BoucherS_cp
015d89f201
9 years ago
BoucherS_cp
fcc59e8737
Version 2.9
10 years ago
BoucherS_cp
e3122b7e41
10 years ago
BoucherS_cp
a9332abb2d
10 years ago
BoucherS_cp
ebbbd00457
10 years ago
BoucherS_cp
854027e890
11 years ago
BoucherS_cp
af8b733790
11 years ago
BoucherS_cp
ac5ca4f242
12 years ago
BoucherS_cp
8598422abe
12 years ago
BoucherS_cp
925cbcd472
12 years ago
emartin_cp
983f425e67
Version 2.0
13 years ago
emartin_cp
0d9a63a7d2
Version 1.9
13 years ago
emartin_cp
a64bb838eb
Rename WPFToolkit.Extended directories for Xceed.Wpf.Toolkit
13 years ago
emartin_cp
0c933c8124
1.8.0 Release
14 years ago
emartin_cp
2edfd42354
1.7.0 Release
14 years ago
Nebuleux_cp
1f0dbeb7e0
Change the license back to Microsoft Public (Ms-PL) in the header of every .cs and .xaml files.
14 years ago
Nebuleux_cp
a5a5359315
Change the namespaces.
14 years ago
Nebuleux_cp
f0775d4061
Add a license description in the header of every .cs and .xaml files.
14 years ago
brianlagunas_cp
6685f79379
TimePicker/DateTimeUpDown : fixed exception when the date/time is set to DateTime.Min and then trying to subtract date/time form that value.
14 years ago
brianlagunas_cp
ecb8324c33
fixed all OnApplyTemplate overrides that hook into events.
14 years ago
brianlagunas_cp
8931793f6b
forgot to remove test code.
15 years ago
brianlagunas_cp
cd5b6355a9
DateTimeUpDown: fixed bug with CultureInfo
15 years ago
brianlagunas_cp
19ea540264
InputBase and UpDownBase controls: BREAKING CHANGE - renamed IsEditable to IsReadOnly and implemented accordingly.
15 years ago
brianlagunas_cp
d8f5f1f0f1
DateTimeUpDown/DateTimePicker: fixed applying a custom format when the FormatString is defined first in XAML.
15 years ago
brianlagunas_cp
8e22d5cf2c
DateTimePicker: fixed issue with custom format and binding the same dateTime to multiple DateTime controls.
15 years ago
brianlagunas_cp
c39ed7c020
TimePicker: fixed bug when trying to use a Custom format and FormatString. Reved to 1.4.0.2.
15 years ago
brianlagunas_cp
43564c3cce
DateTimeUpDown: fixed bug when using custom formats and IsEditable = true
15 years ago
brianlagunas_cp
256bc70a27
Numeric UpDown editors: fixed issue with with Value being set before the newValue is coerced and then having the Value set again. Now the Value is coerced and set only once.
15 years ago
brianlagunas_cp
9d90261826
UpDown editors: due to a bug in Visual Studio, you cannot create event handlers for events that have generic or nullable event args in XAML. So I changed the event args to object to support the design experience, but this now forces you to cast the result of the new value to the appropriate data type.
Various bug fixes
15 years ago
brianlagunas_cp
c3b25b60ad
DateTimePicker and TimePicker: added Watermark and WatermarkTemplate properties. Also fixed small bug in the DateTimePicker.
15 years ago
brianlagunas_cp
b7b88c6903
removed NumericUpDown control.
15 years ago
brianlagunas_cp
ccdae8bb19
NumericUpDown and DateTimeUpDown: Renamed NullValue to DefaultValue.
15 years ago
brianlagunas_cp
35c134a302
DateTimeUpDown: fixed bug I just introduced.
15 years ago
brianlagunas_cp
c4b66dce21
DateTimeUpDown: working on making the control editable (enter values with keyboard). Only have the date editing working. Still working on the time editing.
15 years ago
brianlagunas_cp
0669e78ec7
NumericUpDown and DateTimeUpDown: added NullValue property which allows you to set a default value if the bound value is null. The NullValue will be used when the increment/decrement buttons are pressed on a null value.
15 years ago
brianlagunas_cp
faa7825423
Major overhaul of NumericUpDown, DateTimeUpDown, and MaskedTextBox in order to support null values. Need extensive testing because I am sure I broke something.
15 years ago
brianlagunas_cp
8d02413ea0
DateTimeUpDown: fixed bug when DateTimePart selection would not be correct when setting the Value property first in XAML.
15 years ago
brianlagunas_cp
d48a3d1211
Major overhaul of folder structure. Seperated Generic resource dictionary into smaller more managable resource dictionaries (one for each control). This will also help add support for theming. Hopefully I didn't break anything.
15 years ago
brianlagunas_cp
c028c06421
Moved UpDownBase into the primitives namespace.
15 years ago
brianlagunas_cp
679bd24e0e
DateTimeUpDown: added Left and Right keyboard navigation so the user can use the keyboard to select the different DateTime parts instead of having to use the mouse everytime.
15 years ago
brianlagunas_cp
7fbd1652b5
DateTimeUpDown: implemented feature request to support null DateTime values. Also implemented ability to set Value to null by simply pressing the Delete key.
15 years ago
brianlagunas_cp
4cc111cd09
DateTimeUpDown: added support for custom format. Simply specify the Format as Custom and then provide a FormatString.
<extToolkit:DateTimeUpDown Format="Custom" FormatString="HH:mm" Value="1:30:00 PM" />
Above snippet will show as 13:30
15 years ago
brianlagunas_cp
5ff349863c
DateTimeUpdown: fixed bug when user typed in date/time for the Value Property in xaml then clicking the up/down arrows without making a selection.
15 years ago
brianlagunas_cp
70fa0cf668
DateTimeUpDown: added support for manually entering datTime values as strings in XAML into the Value property. Now you can do this:
<extToolkit:DateTimeUpDown Format="ShortTime" Value="2:00:00 AM" />
15 years ago
brianlagunas_cp
0808c7e7b0
DateTimeUpDown: fixed bug introduced a couple of changesets ago, where the selection gets all screwed up.
15 years ago
brianlagunas_cp
991992fb97
Fixed bug in DateTimeUpDown when not changing the Format, null exception would occur when changing values.
Added default foreground colors to editors to controls like the DataGrid will not change the foreground color.
15 years ago
brianlagunas_cp
37ca2046a3
Added ValueChanged event to DateTimeUpDown and NumericUpDown.
16 years ago
brianlagunas_cp
eaaffa09bb
DateTimeUpDown: fixed bug that occurs when you hit the enter button.
16 years ago
brianlagunas_cp
bb9b091063
did some refactoring of DateTimeUpDown
16 years ago
brianlagunas_cp
cf4a8d4201
added new DateTimeUpDown control. Aloows you to use spin buttons or the mouse wheel to increment/decrement individual sections of a DateTime value. There are currently 10 supported formats: FullDateTime, LongDate, LongTime, MonthDay, RFC1123, ShortDate, ShortTime, SortableDateTime, UniversalSortableDateTime, and YearMonth. Use the control as follows:
<extToolkit:DateTimeUpDown Value="{Binding LastUpdated}" Format="FullDateTime" />
You cannot type in the Value yet because I haven't figured that part out yet.
16 years ago