New Post: When I insert the colorpicker into a listview's context menu the...
Hi, Are you talking about the titles "Available Colors", "Recent Colors" and "Standard Colors" ? I see them in the contextMenu of the ListView when I use your code. I modified those strings and the...
View ArticleNew Post: Prism examples
Hi, I have been looking for AvalonDock examples but can only find older versions. Can anyone point me in the direction of a simple prism / MEF / AD sample that shows how to get a region up and running...
View ArticleNew Post: CheckComboBox enqueries
Hi, For Part 1), I tried your code (without the commented lines) and it worked fine : the CheckComboBox starts with item selected. Using "SelectedItemsOverride" and/or "SelectedValue " will check the 2...
View ArticleNew Post: CheckComboBox Binding Data
Please post a code snippet on how to bind data to this checkedcomb box. I find it difficult to understand how to pass two data valus, one containing the total Items and the other containing selected...
View ArticleNew Post: CheckComboBox Binding Data
Hi, Here's a solution : List<string> listOfItems = new List<string>() { "abc", "def", "ghi", "jkl" }; List<string> selectedItems = new List<string>() { listOfItems[0],...
View ArticleNew Post: BusyIndicator Text value not updating
Hi - I got everything working fine except 1 piece with updating the status text in the textblock tag. I use PropertyChanged event to set the value for the progressbar successfully. When I try to do the...
View ArticleNew Post: BusyIndicator Text value not updating
Hi, In v2.0, it is working fine. Here's my complete code :<StackPanel> <xctk:BusyIndicator x:Name="_busyIndicator" BusyContent="{Binding}" IsBusy="True">...
View ArticleNew Post: Crazy Question: Can XCTK PropertyGrid offer different editors for...
Hi, In the PropertyGrid, there is the "EditorDefinitions" property that let's you set the Editor you want for specific properties. You can say for example : all the bool properties will have a red...
View ArticleNew Post: CheckComboBox enqueries
For Part (1), I realize that I need to remove SelectedValue="{Binding SelectedValue}" from the xaml, then it works.
View ArticleNew Post: Dropdown button and propertygrid
Hello I am trying to add a drop down button with a tree view to your property grid. The drop down button appears but when I select it, I get no drop down at all (I get a tiny black square). Any ideas...
View ArticleNew Post: Dropdown button and propertygrid
Hi, Where are you adding this DropDownButton in the PropertyGrid. As a Custom editor ? Can you paste the code where this dropDownButton appears in the PropertyGrid. As expected a simple DropDownButton...
View ArticleNew Post: Dropdown button and propertygrid
It is as a custom editor. namespace Xceed.Wpf.Toolkit.PropertyGrid.Implementation.Editors { /// <summary> /// Interaction logic for DataSourceEditor.xaml /// </summary> public partial class...
View ArticleNew Post: ChildWindow ResizeMode
Hi, For some reason, I can't access the the ResizeMode property in the child window object. The property is in the documentation and Visual Studio can see the enum, but when I try to use the property...
View ArticleNew Post: PropertyGrid: ExpandableObject do not work with struct property!
I bind a object which has a struct(System.Windows.Size) property to the propertygrid. and i have set the [ExpandableObject] attribute to the property, so that i can expand the nested properties of the...
View ArticleNew Post: Some questions about Color Picker control
Hi guys, first of all, I would like to say a big thank you for making the Extended WPF toolkit: I found very useful stuff inside, like the color picker. As title says, I would like to ask why it is not...
View ArticleNew Post: CornerRadius for DecimalUpDown
Hi! I am trying to override the standard style for DecimalUpDowns with a CornerRadius, but it won't let me add this variable.<Style TargetType="xctk:DecimalUpDown"> <Setter Property="Height"...
View ArticleNew Post: ChildWindow ResizeMode
Hi, The Resize mode for the ChildWindow is available in the "Plus" version of the toolkit : http://wpftoolkit.com/. v2.1 of the Toolkit is already available in the "Plus" version while the "OpenSource"...
View ArticleNew Post: PropertyGrid: ExpandableObject do not work with struct property!
Hi, Can you point out this old post please ? Thanks.
View ArticleNew Post: Some questions about Color Picker control
Hi, The navigation in the ColorPicker is not working yet. It is a known bug that should be implemented in a near future. For the scrollBar not visible, there should be one. It should be fixed within...
View Article