231 Commits (096fd815cedab92fe013cb44d5f178368cd24808)
 

Author SHA1 Message Date
brianlagunas_cp 096fd815ce working on the CheckListBox. You bind your collection to the ItemsSource property. Set the DisplayMemberPath, and the CheckedMemberPath. It also supports Commanding. Set the Command property to your command. The parameter will default to the SelectedItem, which is the item that was just checked/unchecked. It also has a SelectionChganged event. You can obtain the object the was check/unchecked from the e.Item property of the event args. 15 years ago
brianlagunas_cp 171f315dda CheckListBox: still working on it 15 years ago
brianlagunas_cp 402858a083 initial check-in of new CheckListBox. not ready for use yet. still playing with architecture. 15 years ago
brianlagunas_cp 85533d9d49 ChildWindow: fixed bug in the .NET 3.5 version when setting the FocusVisualStyle in the OnApplyTemplate method. .NET 3.5 doesn't support setting Setter.Value with a ContentControl so it is a limitation of the .net framework. Luckily this works in .NET 4.0. The work around was to not use a focus visual style in the .NET 3.5 version and to set it to null. 15 years ago
brianlagunas_cp a5ad7c136e ChildWindow: fixed focus issue where focus rectangles wouldn't follow the elemtns on move. 15 years ago
brianlagunas_cp 18d74e72b5 RichTextBox: when the SetText was placed in the Dispatcher the TextChanged event would fire multiple times which would set the source value mutliple times. This has been fixed. 15 years ago
brianlagunas_cp c9a7d7fb1d RichTextBox: using dispatcher to set the text to improve perofrmance. 15 years ago
brianlagunas_cp df096e0e0f added AllowPartiallyTrustedCallers assembly attribute 15 years ago
brianlagunas_cp 26f996d834 forgot to removed maskedTextBox theme 15 years ago
brianlagunas_cp 7a43161d2d MaskedTextBox: now derives from TextBox. Hopefully I didn't break anything. 15 years ago
brianlagunas_cp d83b0cd6bb MaskedTextBox: fixed FormatException with numeric masks 15 years ago
brianlagunas_cp b54f3ed3dc merged changes to 3.5 solution 15 years ago
brianlagunas_cp 9bf7dae6b1 MaskedTextBox: fixed BorderBrush and BroderThickness bindings. 15 years ago
brianlagunas_cp 0c8ab49545 DateTimePicker: re-wrote control to derive from DateTimeUpDown 15 years ago
brianlagunas_cp 5e687f11ef DateTimeParser: fixed exception when Format is null 15 years ago
brianlagunas_cp 54944e02d4 MaskedTextBox: fixed IsEditable when pasting and deleting 15 years ago
brianlagunas_cp e3335ee515 ChildWindow: Implemented DesignerWindowState property. By default it will be open. The WindowState property will now have no affect on the design-time state of the ChildWindow. 15 years ago
brianlagunas_cp 5d3516bfe4 WatermarkTextBox: implemented SelectAllOnGotFocus property 15 years ago
brianlagunas_cp 1533f4c5aa incremented assembly version to 1.4.0.3 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 6d2d78d434 did it for the .net 3.5 source as well. 15 years ago
brianlagunas_cp dc91d3d51a MaskedTextBox: bound the BorderBrush and BorderThickness properties. 15 years ago
brianlagunas_cp 4beca7ad28 DateTime controls: improved the date time parsing to better support different cultures. 15 years ago
brianlagunas_cp 60fbbc1052 re-fixed the busy indicator focus issue. Dang you copy and paste! 15 years ago
brianlagunas_cp 3b0f6ac5a2 DateTimePicker: added ValueChanged event 15 years ago
brianlagunas_cp 2a29925b1e SplitButton: prevented a style targeting type Button to change the margin of the SplitButton 15 years ago
brianlagunas_cp 4a5f0601bd MaskedTextBox: fixed focus issue that I fixed a long time ago but somehow re-intorduced. 15 years ago
brianlagunas_cp 4ee183976b PropertyGrid EnumComboBoxEditor: removed values with Browsable attribute 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 f59e38eebe Numeric UpDown editors: fixed Vertical Alignment. 15 years ago
brianlagunas_cp f477829a7f merged changes into 3.5 solution 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 21a737032d Numeric UpDown editors: fixed bug dealing with the FormatString I introduced when trying to fix another bug. 15 years ago
brianlagunas_cp 21ede68b8b patched previous DateTimeUpDown bug and replaced current download. now reved at 1.4.0.1 15 years ago
brianlagunas_cp 43564c3cce DateTimeUpDown: fixed bug when using custom formats and IsEditable = true 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 2e5e1afd1f Calculator: % now works like Windows Calc.exe 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. 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 ed36c01709 ChildWindow: removed WindowState design time check until new feature request can be implemented 15 years ago
brianlagunas_cp 5cb7b67577 ChildWindow: WindowState is Open when in design mode, but Closed by default at runtime. 15 years ago
brianlagunas_cp 504f833b7e Calculator: localize value 15 years ago
brianlagunas_cp 5a6d94cac7 ColorCanvas: added SelectedColorChanged event 15 years ago
brianlagunas_cp 28b2201a2a CalculatorUpDown: added DisplayText, Memory, and Precision properties. 15 years ago
brianlagunas_cp e6f4e6a4bf Calculator: added ValueChanged event and now "ERROR" is displayed for any invalid math operation such as division by zero. 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 6bb1c3dff2 numeric UpDown editors: fixed minor bug when data binding the FormatString. 15 years ago