New Post: ColorPicker Idea
Hi, Issue https://wpftoolkit.codeplex.com/workitem/20633 has been created for the SelectedColorChanged.
View ArticleNew Post: ColorPicker Idea
If you want the ColorPicker to show a full colored Rectangle (without the white border), you can modify the ColorPicker's template. In file Xceed.Wof.Toolkit/ColorPicker/Themes/Aero2.NormalColor.xaml...
View ArticleNew Post: Displaying read-only collections in the PropertyGrid
Hi, Issue https://wpftoolkit.codeplex.com/workitem/20634 has been created for this.
View ArticleNew Post: Store checked items from CheckComboBox in a string array
in a ItemsSelectionChanged event, I wish to store those checked items in a string array, is that possible? I try below: private void CheckComboBox_CostCenter_ItemSelectionChanged(object sender,...
View ArticleNew Post: SelectedItem --- is there some bugs?
In the documentation http://wpftoolkit.codeplex.com/wikipage?title=CheckComboBox it says: SelectedItem Gets/Sets the last checked or unchecked item. (Inherited from Selector.) However, with the below...
View ArticleNew Post: IntegerUpDown UpdateSourceTrigger
I want to use UpdateSourceTrigger=LostFocus when entering Integers in the text field. When the Up/Down arrows are used be able to use UpdateSourceTrigger=PropertyChanged. Is this possible. for example...
View ArticleNew Post: Store checked items from CheckComboBox in a string array
Hi, CheckComboBox_CostCenter.SelectedValue is the string of all the SelectedItems in the CheckComboBox, separated by ",". Try this :string[] words = CheckComboBox_CostCenter.SelectedValue.Split( ','...
View ArticleNew Post: SelectedItem --- is there some bugs?
Hi, The documentation is not up to date, A change has been made in the Selector. Now, the SelectedItem contains the first items selected in the SelectedItems list, not the last selectedItem(or the last...
View ArticleNew Post: Prevent moving a Childwindow?
Is there a way to prevent the user from moving a ChildWindow around? I'd like to put mine in a specific location, rather than making it float freely. Thanks for any help!
View ArticleNew Post: CheckComboBox enqueries
I have 2 enqueries: 1st: How do I enable say first or second item (or first and second item) of the CheckComboBox to be checked upon Windows_Loaded? 2nd: Say I use the CheckComboBox to update a...
View ArticleNew Post: DateTimePicker Validation
Hi, I have a scenario I can't figure out how to implement. I want to validate that from date is less than the to date. I am using the DateTimePicker control. <StackPanel Orientation="Horizontal"...
View ArticleNew Post: CheckComboBox enqueries
Hi, 1) to start the CheckComboBox with selectedItems, you can set the SelectedItemsOverride property : List<string> myList = new List<string>() { "abc", "def", "ghi", "jkl" };...
View ArticleNew Post: DateTimePicker Validation
Hi, In v2.1 of the Toolkit, which should be released pretty soon, you will have access to Minimum and Maximum property in DateTimePicker. You will be able to do something like :<TextBlock Text="From...
View ArticleNew Post: Is it possible to paste data into the DataGrid
Hi, You can copy-paste into DataGrid's cell, but you can't copy-paste a source in the DataGrid.
View ArticleNew Post: Prevent moving a Childwindow?
Hi, a childWindow can move in it's WindowContainer. If the WindowContainer size is the same as the childWindow size, the ChildWindow will not be movable :<xctk:WindowContainer...
View ArticleNew Post: IntegerUpDown UpdateSourceTrigger
Hi, You could create your own IntegerUpDown, use a UpdateSourceTrigger of LostFocus and override the OnSpin method to update the binding when user uses the up/down arrows : <xctk:IntegerUpDown...
View ArticleNew Post: UpDown box Inches format
Hi, Maybe this could help : https://wpftoolkit.codeplex.com/discussions/449805
View ArticleNew Post: When I insert the colorpicker into a listview's context menu the...
The xaml below doesn't display the headers, but when i place the same colorpicker xaml outside of the context menu, the headers display. Why is this, and is there any way i can fix...
View ArticleNew Post: CheckComboBox enqueries
Hi BoucherS, the first answer to (1) does not work. I have this and I do not see any of the first and second items being checked upon Windows_Loaded. private void Window_Loaded(object sender,...
View Article