brianlagunas_cp
5e15db5835
ChildWindow: implemented properties that were previsouly not implemented such as OverlayBrush and OverlayOpacity which controls the look of the modal overlay when using the ChildWindow in a modal setting. Changed Caption property from type of string to type of object so now complex captions can be created using various XAML elements.
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
1c3ca6df7e
ChildWIndow: fixed bug when creating child window from code and setting IsModal to true.
15 years ago
brianlagunas_cp
58b648b40c
ChildWIndow: fixed bug which was cause by showing the window then resizing the parent, the window would not recalculate its position to stay in view. I refactored the code. I also added a new property called WindowStartupLocation. There are two options; Center and Manual. Set it to Center if you want the ChildWindow to always be centered when it opens. Set it to Manual if you want to control where it opens by setting the Top and Left properties. If set on Manual and the user drags the ChildWindow and closes it, it will reopen the last place the user moved it. The default value is Manual.
15 years ago
brianlagunas_cp
a1c5cee93b
ChildWindow: fixed tabbing bug.
15 years ago
brianlagunas_cp
99f34fec54
ColorPicker: added transparent color swatch to Standard Colors. Fixed minor binding errors.
15 years ago
brianlagunas_cp
12aae2ff0c
RichTextBoxFormatBar: fixed bug when setting a RTB background color to anything but white and then showing the format bar which would add a white highlight color to the selected text.
15 years ago
brianlagunas_cp
381eb5d1d4
RichTextBoxFormatBar: fixed color indicator on font color picker
15 years ago
brianlagunas_cp
17e1e9f05f
ColorPicker: added new property that allows you to specify how to show the color information. You can show just the color or the color and color name. Just set the DisplayColorAndName property to true to display the color block and the name of the color next to it.
<extToolkit:ColorPicker DisplayColorAndName="True"/>
15 years ago
brianlagunas_cp
53ead6bd64
ColorPicker: fixed bug where the popup would stay open when other controls receive focus. Restyled the colorPicker.
RichTextBoxFormatBar: fixed font highlight toogle button to display the current highlight color
15 years ago
brianlagunas_cp
d37d90a255
RichTextBox: fixed bug when using custom formatter and binding to null/empty text property. Also added RichTextBox.Clear method to allow user to programmatically clear the contents of the RTB.
15 years ago
brianlagunas_cp
e6ebd6d72d
MaskeTextBox and NumericUpDown: implemented support for access keys when used with a Label.
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
dff22927b6
MaskedTextBox: implemented paste
15 years ago
brianlagunas_cp
28afd0ab72
RichTextBox: fixed bug that I re-introduced that deals with using custom ITextFormatters.
15 years ago
brianlagunas_cp
4abef32184
Input controls: added support to change background color.
15 years ago
brianlagunas_cp
8fad2fceee
small bug fixed and reving for 1.3 release
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
87e4f40933
RichTextBxox: fixed bug where setting a ViewModel property in code would not update the RichTextBox
15 years ago
brianlagunas_cp
62587a34fb
RichTextBox: fixed but when using a custom TextFormatter inside a DataTemplate.
15 years ago
brianlagunas_cp
7441433bf6
MaskedTextBox: fixed bug where setting IncludeLiterals or IncludePrompt properties inside DataTemplate would throw exception.
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
d417961ec2
NumericUpDown: implemented new feature request of SelectAllOnGotFocus property. When set to true, all text will be selected when the user tabs or single clicks into the control.
15 years ago
brianlagunas_cp
3b0508eb3a
Spinner: fixed bug when exception occurred when the spinner button was clicked after typing a number above the maximum allowed.
15 years ago
brianlagunas_cp
7e23ff70da
ButtonSpinner: Fixed tabbing issues.
15 years ago
brianlagunas_cp
656792de6a
MaskedTextBox: fixed Blend designer error.
15 years ago
brianlagunas_cp
606aeda9f9
[14735]: MessageBox: fixed ArgulmentNullException when showing a messageBox before a window has loaded.
15 years ago
brianlagunas_cp
37ca2046a3
Added ValueChanged event to DateTimeUpDown and NumericUpDown.
15 years ago
brianlagunas_cp
e224ec351f
forgot to add the images to the 3.5 solution
15 years ago
brianlagunas_cp
d0b7fe55f4
ColorPicker: Added SelectedColorChanged event. Added ButtonStyle property so you can style the ColorPicker's dropdown button any way you want.
RichTextBoxFormatBar: Added Text Highlight Color, Font Color, Bullet list and numbered lists.
15 years ago
brianlagunas_cp
e8e942ad1f
Merged updated ColorPicker into 3.5 solution.
15 years ago
brianlagunas_cp
d8d4a632b9
ColorPicker: completely re-wrote the color picker control. It now no longer has the color canvas and sliders to choose colors, (it will eventually in advanced mode). It now has 140 color squares of all available KnownColors, it also has a standard color palette of ten commonly used colors, and keeps track of recently used colors. You can supply your own custom available color and standard color palettes by setting the AvailableColors and StandardColors properties.
15 years ago
brianlagunas_cp
8717ff917f
ChildWindow: fixed bug when trying to use in XBAP
15 years ago
brianlagunas_cp
8e558b1436
changed coding stragegy so I can more easily support both .NET 4.0 and 3.5.
15 years ago
brianlagunas_cp
e7edaf4925
fixed some focusing when tabbing issues.
15 years ago
brianlagunas_cp
96d7444d2d
remember when I renamed DisplayText to Text, well I broke something. should be fixed now :0)
15 years ago
brianlagunas_cp
ea183afbc3
ChildWindow: fixed modal overlay when IsModal = true
15 years ago
brianlagunas_cp
7009640d46
removed the data visualization because I don't want to support the controls, they are Microsofts afterall.
15 years ago
brianlagunas_cp
70c20babc0
Added new DataVisualization Charting controls. These controls are the same ones that are currently in the WPF Toolkit except they have been updated to match the SIlvelright 4 toolkit. You get the bug fixes/updates before they are offically released in the next version of Microsofts WPF Toolkit. Special thanks to Microsoft's Dave Anson (a.k.a Delay)
15 years ago
brianlagunas_cp
eaaffa09bb
DateTimeUpDown: fixed bug that occurs when you hit the enter button.
15 years ago
brianlagunas_cp
bb9b091063
did some refactoring of DateTimeUpDown
15 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.
15 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
15 years ago
brianlagunas_cp
403c43dc31
NumericUpDown: constrained the Value between the Min and Max values.
15 years ago
brianlagunas_cp
e04f959612
fixed some stuff I broke, and improved data type conversions
15 years ago
brianlagunas_cp
34e7fd56df
Made a lot of changes, and possible breaking changes:
1. added new MaskedTextBox control
2. no longer have UpDownBase<T>
3. NumericUpDown now has new base class. Hopefully I didn't break anything, but I know I did :0)
4. By default the NumericUpDown uses doubles. To use anything else such as decimals or int you must specify the ValueType accordingly.
<extToolkit:NumericUpDown Grid.Row="1" Value="{Binding Age}" Increment="1" Minimum="18" Maximum="65" ValueType="{x:Type sys:Int32}" />
15 years ago
brianlagunas_cp
b7900c5ac9
NumericUpDown: Bug fix [14622]: When defining the properties for the NumericUpDown, if you define the Value property before the Maximum and Minimum properties , the Spiners will not eveluate the Max/Min value properly. If you don't want to compile the source for the fix, just be sure to define all properties prior to setting the Value property.
15 years ago