New Post: Autogenerated PropertyGrid : How to specify Properties for default...
Hello, I have multiple PropertyGrid with AutoGenerateProperties="True" in my application. These PropertyGrid are used to display/input a large number of different objects. Some of their properties need...
View ArticleNew Post: Checked List Box
Hi DeepuJo, 1) Checking items by Index In the CheckListBox, SelectedItems are added by items. So if you have the Index, you can do something like : _checkListBox.ItemsSource = new List<string>()...
View ArticleNew Post: Control to schedule
Hi, Maybe using a CollectionControlButton. When clicked it will show a CollectionControlDialog. This dialog contains a CollectionControl. This CollectionControl contains a listBox for the Days and a...
View ArticleNew Post: Autogenerated PropertyGrid : How to change formating of default...
Hi, In The "Plus" edition of the PropertyGrid, you can customize a DoubleUpDownEditor with properties. Something like :<xctk:PropertyGrid Name="_propertyGrid">...
View ArticleNew Post: Checked List Box
hi solved first problem(Checking items by Index ) thank you so much for the quick reply. 2) Check visible right away is it possible to attach image with this ??if so i can attach image of my problem...
View ArticleNew Post: Autogenerated PropertyGrid : How to change formating of default...
Many thanks, I read about EditorTemplateDefinition but didn't understand it was possible to re-use the DoubleUpDown in the template definnition. The CultureInfo en-US will parse "." but not "," though...
View ArticleNew Post: Control to schedule
thank you so much for the advice. as am new to WPF,its a new control for me... is it possible to add combo box and checked list box in to the PropertyGrid ? and also,any way to add context menu strip...
View ArticleNew Post: Checked List Box
Hi, You can upload your images on this site http://postimage.org/ and copy the link here. You can also copy-paste a small snippet to show the problem. Thanks.
View ArticleNew Post: Control to schedule
Hi, You can try the LiveExplorer App available here https://wpftoolkit.codeplex.com/ to test the controls from the Toolkit. You will also find the documentation of each control here :...
View ArticleNew Post: ComboBox in PropertyGrid
hi.. is it possible to add combo box to property window ? like Gender : Male/Female (in combo box )
View ArticleNew Post: ComboBox in PropertyGrid
The PropertyGrid will use a ComboBoxEditor for properties of type enum.public enum Gender { Male, Female } _propertyGrid.SelectedObject = new MySubData() { FirstName = "Tom", MyGender = Gender.Male };...
View ArticleNew Post: Simple layout
I need to move my WPF application to use AvalonDock so that I can have my application offer floating and docked windows. I have downloaded the toolkit and I have a very simple test bed to test if I can...
View ArticleNew Post: Simple layout
Hi, There is a property on LayoutAnchorable : AutoHideWidth. It is the width of the control when it will be visible. Default is at 0 pixel. When LayoutAnchorable.AutoHideWidth is 0, we use...
View ArticleNew Post: Simple layout
Thanks, that seems to work well with one exception, it appears that I cannot use binding on "AutoHideWidth" to bind it to the main window width. I would like to do this so that when the user changes...
View ArticleNew Post: Simple layout
Hi, 1) LayoutAnchorable DPs LayoutAnchorable is not part of the VisualTree, so binding won't work on it. That is why DPs are not used on LayoutAnchorable. LayoutAnchorableControl is the view control,...
View ArticleNew Post: Simple layout
Thank you for that explanation. I have changed my code to use docked documents and the TABs appear along the top of the window, and I have a few questions about that arrangement. First, since the...
View ArticleNew Post: Checked List Box
i have uploaded the imagehttp://postimg.org/image/72hnfxior/ here in first image ,actually i have selected Dining.But check is not visible. in the second picture ,i just checked the focus to break...
View ArticleNew Post: Control to schedule
i think, PropertyGrid is available in "Plus" edition only
View ArticleNew Post: Checked List Box
Hi, Is your bug related to this : https://wpftoolkit.codeplex.com/workitem/19774
View ArticleNew Post: Control to schedule
Hi, If you look at this page, you will see that the PropertyGrid is in the "Community Edition", and that the "Plus" edition also has the PropertyGrid but with more...
View Article