brianlagunas_cp
|
fba114e062
|
DateTimeUpDown and NumericUpDown: fixed TabIndex issue.
|
15 years ago |
brianlagunas_cp
|
5f4516a6fc
|
MaskedTextBox: fixed TabIndex issue.
|
15 years ago |
brianlagunas_cp
|
7f5febee3f
|
ButtonSpinner: fixed minor tabbing issue that I introduced when I implemented the ButtonChrome
|
15 years ago |
brianlagunas_cp
|
7604e6cad1
|
MaskedTextBox: fixed focus issue when calling Focus method.
|
15 years ago |
brianlagunas_cp
|
7bc76403e3
|
removed password from strong name key due to a bug in Visual Studio: http://connect.microsoft.com/VisualStudio/feedback/details/524792/importing-key-file-was-canceled
|
15 years ago |
brianlagunas_cp
|
79f1930066
|
signed the assembly.
|
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
|
141e00da41
|
added ButtonChrome to ButtonSpinner. This is the first step to supporting theming.
|
15 years ago |
brianlagunas_cp
|
10584447af
|
working on ButtonChrome styling and SplitButton template.
|
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
|
d52abc0427
|
marked assembly as CLSCompliant
|
15 years ago |
brianlagunas_cp
|
607584d43f
|
ButtonChrome: working on colors
|
15 years ago |
brianlagunas_cp
|
8694161d60
|
ButtonChrome: working on colors
|
15 years ago |
brianlagunas_cp
|
5cc69cc49e
|
initial check in of ButtonChrome control
|
15 years ago |
brianlagunas_cp
|
d9f171528f
|
SplitButton: added click event and Commanding support.
|
15 years ago |
brianlagunas_cp
|
2ed2b328f6
|
finally got SplitButton popup behavior working properly.
|
15 years ago |
brianlagunas_cp
|
2021b454fc
|
trying to get SplitButton to behave properly, not having much success.
|
15 years ago |
brianlagunas_cp
|
77c5557650
|
initial check in of new SplitButton control.
|
15 years ago |
brianlagunas_cp
|
1c8402d3b7
|
deleted old UpDownBase folder
|
15 years ago |
brianlagunas_cp
|
c028c06421
|
Moved UpDownBase into the primitives namespace.
|
15 years ago |
brianlagunas_cp
|
7795ff42f7
|
ChildWindow: fixed Closed and Closing event bug. When setting e.Cancel to true in the Closing event, the ChildWindow would still close.
|
15 years ago |
brianlagunas_cp
|
d2fc320f65
|
ChildWindow: fixed focus issue when showing the ChildWindow and immediately tabbing.
|
15 years ago |
brianlagunas_cp
|
39b83d04a8
|
forgot to check in generic.xaml with last check in
|
15 years ago |
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 |