brianlagunas_cp
4ab4d3c024
WatermakrTextBox: fixed context menu not working as expected.
14 years ago
brianlagunas_cp
9c8fc98833
DropDownButton: fixed issue with initial command not calling CanExecute to check the state of the buttons
14 years ago
brianlagunas_cp
0dc67ff611
Made ColorSpectrumSlider class modifier public to support styling.
14 years ago
brianlagunas_cp
efe6cd6c69
DateTimePicker: fixed null exception when setting value to null.
14 years ago
brianlagunas_cp
6685f79379
TimePicker/DateTimeUpDown : fixed exception when the date/time is set to DateTime.Min and then trying to subtract date/time form that value.
14 years ago
brianlagunas_cp
63e65e47b9
PropertyGrid: added ShowSortOptions and ShowSearchBox properties that will allow you to control the visibility of the Categorize/Alpha sort optiosna dnt he search text box.
14 years ago
brianlagunas_cp
ecb8324c33
fixed all OnApplyTemplate overrides that hook into events.
14 years ago
brianlagunas_cp
3f9a4d19f1
PropertyGrid: implemented PropertyOrderAttribute. You can now apply the PropertyOrder attirbute to a property to control the order in which the properties are sorted. The attribute is only honored while in the Categorized view and ignored when sorted alphabetically
14 years ago
brianlagunas_cp
175403f030
MessageBox: fixed messageBox drag when FlowDirection set RightToLeft
14 years ago
brianlagunas_cp
5f8aa6477b
MaskedTextBox: fixed issue where arrows would clear selected text
14 years ago
brianlagunas_cp
b3b7d9d452
merged 4.0 changes into the 3.5 solution. Not tested so I may have missed some things.
14 years ago
brianlagunas_cp
f2903f468f
DateTimePicker: fixed rare issue with calendar not selecting the value
14 years ago
brianlagunas_cp
65891e83c0
DropDownButton: now allows you to tab into the control. Pressing space will open the drop down.
14 years ago
brianlagunas_cp
f3a0d20ebd
PropertyGrid: added feature that allows you to specify a display name when using the IItemsSource attribute.
14 years ago
brianlagunas_cp
efb4e47187
Calculator: fixed bug where key would appearstuck when typing the values rapidly with the keyboard.
14 years ago
brianlagunas_cp
3f1d3ad4aa
PropertyGrid: fixed issue with ExpandableProperty past 1 level
14 years ago
brianlagunas_cp
f271a3c805
PropertyGrid: fixed possible null reference exception nwhen setting the Filter
14 years ago
brianlagunas_cp
91cb7e1914
messing with ButtnoSpinner demo
14 years ago
brianlagunas_cp
ad527a73ae
ColorPicker: fixed selected color not streching to length of control.
14 years ago
brianlagunas_cp
26fec8df2a
tons of fun with theming.
14 years ago
brianlagunas_cp
ec9f9cc534
playing with theming
14 years ago
brianlagunas_cp
29ac63a65d
PropertyGrid: added FilterWatermark property which allows you to customize the watermark of the Filter textbox.
14 years ago
brianlagunas_cp
d881eead18
Wizard: fixed closing parent window exception when window was not shown with ShowDialog.
14 years ago
brianlagunas_cp
6ffe5c2220
MaskedTextBox: fix bug with not properly handling optional digits represented by 9
14 years ago
brianlagunas_cp
fad356b88d
PropertyGrid; fixed null exception when clicking the categorize and alphabetize buttons when the SelectedObject is null.
14 years ago
brianlagunas_cp
eb88719af7
PropertyGrid: ExpandableObject editor is now read only.
14 years ago
brianlagunas_cp
107287c251
PropertyGrid: fixed issue wtih ExpandableObject not expanding when private setter is present.
14 years ago
brianlagunas_cp
03cc414929
More theming fun with the ButtonSpinner
14 years ago
brianlagunas_cp
ad8ed27f51
PropertyGrid: fixed issue where an ExpandableObject would only show properties of a base class or interface.
14 years ago
brianlagunas_cp
265b4c02aa
Starting to play around with theming. Starting with the ButtonSpinner.
15 years ago
brianlagunas_cp
d9e0681ac9
Selector: fixed possible null object exception.
15 years ago
brianlagunas_cp
e129c60465
DateTimeParser: now correctly parses SortableDateTime and UniversalSortableDateTime formats
15 years ago
brianlagunas_cp
aea813be8c
merged changes into .NET 3.5 solution
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
b7a284dd99
TokenizedTextBox: handling proper deletion of tokens using the Back and Delete keys.
15 years ago
brianlagunas_cp
07f8e54f87
TokenizedTextBox: fixed bug when adding spaces before a toekn which would add extra runs and cause an exception when trying to delete the token by using the embedded delete button.
15 years ago
brianlagunas_cp
bdcfc9c093
TokenizedTextBox: got the basics working. No autocomplete yet, but the value is looked up from the ItemsSource. This control can be used with or without an itemsrouce backing values. If no ItemsSource is define, the Text property will be a list of semi-colon separated values. If backed by an ItemsSource the Text property will be a semi-colon separated list of values based on the ValueMemberPath property:
<extToolkit:TokenizedTextBox x:Name="_textBox"
DisplayMemberPath="FullName" //value to display
SearchMemberPath="FirstName" //value to search for when typing
ValueMemberPath="Id" //value to store in text property />
//code behind
_textBox.Text = "1;2;"; //list of object ids
_textBox.ItemsSource = new List<Email>() //use as lookup values
{
new Email() { Id = 1, FirstName = "John", LastName = "Doe", EmailAddress = "john@test.com" },
new Email() { Id = 2, FirstName = "Jane", LastName = "Doe", EmailAddress = "jane@test.com" },
};
15 years ago
brianlagunas_cp
0499cd1b56
added new control TokenizedTextBox. Not ready for use yet, still working on architecture and funtionality.
15 years ago
brianlagunas_cp
7549ac5bbe
DateTimePicker: fixed dropdown when IsReadOnly = true
15 years ago
brianlagunas_cp
8931793f6b
forgot to remove test code.
15 years ago
brianlagunas_cp
cd5b6355a9
DateTimeUpDown: fixed bug with CultureInfo
15 years ago