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
dc5054e770
MaskedTextBox, NumericUpDown, DateTimeUpDown: fixed bug where HorizontalCOntentALignment would have no effect.
15 years ago
brianlagunas_cp
70f5b84375
ButtonSpinner: Added AllowSpin and ShowButtonSpinner properties
UpDownBase: Added AllowSpin and ShowButtonSpinner properties
15 years ago
brianlagunas_cp
e49f830059
initial check-in of new DateTimePicker control. Get the best of both worlds. This combines the DateTimeUpDown control with a drop down that has a Calendar control and another TimeUpDown control.
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
fba114e062
DateTimeUpDown and NumericUpDown: fixed TabIndex issue.
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