brianlagunas_cp
26fec8df2a
tons of fun with theming.
15 years ago
brianlagunas_cp
ec9f9cc534
playing with theming
15 years ago
brianlagunas_cp
03cc414929
More theming fun with the ButtonSpinner
15 years ago
brianlagunas_cp
d9e0681ac9
Selector: fixed possible null object exception.
15 years ago
brianlagunas_cp
6b7823d4ac
CheckComboBox: dropdown closes when clicking outside the control.
15 years ago
brianlagunas_cp
095de0345e
merged new controls into 3.5 solution.
15 years ago
brianlagunas_cp
7c10f04894
made some slight changes to the CheckListBox/CheckComboBox.
IMPORTANT: There is a SelectedItems property for both controls, but it is intended to be ReadOnly. You cannot data bind to ReadOnly DependencyProperties, so in order to enable the scenario of data binding to the SelectedItems from a ViewModel, I had to leave it as a public get/set property. For this binding to work correctly, you MUST set the binding Mode=OneWayToSource for the SelectedItems property.
15 years ago
brianlagunas_cp
201a9243f8
Added SelectedMemberPath to CheckListBox and CheckComboBox
15 years ago
brianlagunas_cp
a5d3633aac
stablized the CheckListBox and CheckComboBox
15 years ago
brianlagunas_cp
d89cbe19fa
working on the CheckComboBox and CheckListBox. Do not use them, they are not ready.
15 years ago
brianlagunas_cp
1cd44b2114
CheckComboBox: updated selected items based off of SelectedValue
15 years ago
brianlagunas_cp
ca42a8ac57
fixed type in Selector base class and added IsSelected property to the SelectedItemChangedEventArgs class
15 years ago
brianlagunas_cp
d073b12f3c
BREAKING CHANGES: CheckComboBox and CheckListBox now derives from same Selector base class.
15 years ago
brianlagunas_cp
f3aad8decc
added new CheckComboBox control.
15 years ago
brianlagunas_cp
cd5b6355a9
DateTimeUpDown: fixed bug with CultureInfo
15 years ago
brianlagunas_cp
af4c60208d
Moved PropertyGrid changes into .NET 3.5 solution
15 years ago
brianlagunas_cp
bdbd98b09e
PropertyGrid: fixed alignment of grid splitter for expanded properties
15 years ago
brianlagunas_cp
19ea540264
InputBase and UpDownBase controls: BREAKING CHANGE - renamed IsEditable to IsReadOnly and implemented accordingly.
15 years ago
brianlagunas_cp
8aaac023af
PropertyGrid: finished CollectionEditor control. This editor will only work for collections that implement the IList interface.
15 years ago
brianlagunas_cp
54fdc2c072
Wizard: Implemented Wizard Pages, Help, Back, Next buttons. Added features to set visibility of buttons from the Wizard and then override the behavior from the individual wizard pages. No styling yet. It's pretty plain.
15 years ago
brianlagunas_cp
305b4551f4
UpDown controls: added MouseWheelActiveOnFocus property which allows you to decide if the control must have focus in order for the mouse wheel to incement/decrement the value. True by default.
15 years ago
brianlagunas_cp
816de91c66
NUmeric UpDown editors: Fixed .NET 3.5 bug with TextAlignment property.
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
a2ba2885ec
UpDownBase: found issue in .NET 3.5 version with updating text.
15 years ago
brianlagunas_cp
8448087086
Getting ready for v1.4 release
15 years ago
brianlagunas_cp
7fe3ee4d96
Calculator: missed a localization spot
15 years ago
brianlagunas_cp
504f833b7e
Calculator: localize value
15 years ago
brianlagunas_cp
9858a1e81f
numeric editors: minor changes.
15 years ago
brianlagunas_cp
b7b88c6903
removed NumericUpDown control.
15 years ago
brianlagunas_cp
51e6a10b9f
check in of new DecimalUpDown and DoubleUpDown. All numeric UpDown controls shoudl be functional. Now it is time to refactor.
15 years ago
brianlagunas_cp
6f5d844125
checked in initial IntegerUpDown control. Not ready for use, just getting it in the code base.
15 years ago
brianlagunas_cp
9d85504a12
In order to reliably support the different numeric data types, I need to create a specific control for each data type. So instead of copying and pasting I am going to try to create a generic base class that has most of the logic in it. This will make the NumericUpDown control obsolete and it will be removed from the toolkit. The new controls will be DecimalUpDown, DoubleUpDown, and IntegerUpDown.
15 years ago
brianlagunas_cp
af6d43a151
Added Watermark and WatermarkTemplate to all controls derived from InputBase.
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
a78bf7baae
Calculator: implemented memory functions
15 years ago
brianlagunas_cp
87f7305430
Calculator: got the rest of math functions working. Now I am moving on to the Memory functions.
15 years ago
brianlagunas_cp
67b8175d62
Calculator: got basic math working.
15 years ago
brianlagunas_cp
7d6b612fff
Working on Calculator
15 years ago
brianlagunas_cp
70f5b84375
ButtonSpinner: Added AllowSpin and ShowButtonSpinner properties
UpDownBase: Added AllowSpin and ShowButtonSpinner properties
15 years ago
brianlagunas_cp
2f50c837b6
Merged all current 4.0 changes into the 3.5 solution. Didn't fully test all controls, but they all compile and seem to work. Not sure how much longer I will support 3.5 since it is so time consuming and a pain to do it.
15 years ago
brianlagunas_cp
f3091ccbc5
check-in initial TimePicker control. Not ready to be used, still trying to decide what approach to take to develop it.
15 years ago
brianlagunas_cp
833623716a
ColorPicker: implemented ColorCanvas control. ColorPicker now has an advanced color palette to choose colors form.
15 years ago
brianlagunas_cp
a030fcd934
initial checkin of new ColorCanvas control. This is an advanced color control that is not within a popup, but acts as a stand alone control that allows you to select colors by using a color canvas, or by setting RGB and Alpha values.
15 years ago
brianlagunas_cp
85bfc4484f
PropertyGrid: Working on property options, and ValueSource icons.
15 years ago
brianlagunas_cp
c77febf480
ColorToSolidColorBrushConverter: implemented ConvertBack method. Although not used in the toolkit, a user has requested this functionaltiy and provided a patch.
15 years ago
brianlagunas_cp
c028c06421
Moved UpDownBase into the primitives namespace.
15 years ago
brianlagunas_cp
99f34fec54
ColorPicker: added transparent color swatch to Standard Colors. Fixed minor binding errors.
15 years ago
brianlagunas_cp
37ca2046a3
Added ValueChanged event to DateTimeUpDown and NumericUpDown.
16 years ago
brianlagunas_cp
05b6f8024d
InputBase: Renamed DisplayText back to Text. made more sense and I didn't want to go change all the documentation to DisplayText :0P
16 years ago