New Post: Avalondock 2.1 - Designer issue
Hi, after upgrading from 2.0 to 2.1, the designer displays an empty plane instead of the real layout. Please use following XAML to reproduce the issue:<Window x:Class="DemoWindow"...
View ArticleNew Post: TimePicker Selected Text
Is there any way to autoselect text when you tab to the time picker control? Usually for a textbox you would do this textbox.SelectionStart = 0; textbox.SelectionLength = textbox.Text.Length; But the...
View ArticleNew Post: Dynamic attribute to change DescriptionAttribute in PropertyGrid of...
I am using attributes to define the Description, Category and Display name of properties that populate a PropertyGrid (within a CollectionEditor). Is there any way to modify these attributes at run...
View ArticleNew Post: TimePicker Selected Text
Issue https://wpftoolkit.codeplex.com/workitem/20802 has been created.
View ArticleNew Post: Dynamic attribute to change DescriptionAttribute in PropertyGrid of...
Hi, It is possible to do it. The DescriptionAttribute has a public property "Description" which is ReadOnly, It also has a "DescriptionValue" whick is protected read/write. We can access this...
View ArticleNew Post: Binding combobox content of a property in propertygrid
I need to have a customized editor definition of a property in the Property Grid. The property definition contains a combo box and a button. Combo box items have to be populated as a list of image...
View ArticleNew Post: Binding combobox content of a property in propertygrid
Hi, EditorDefinition is obsolete. Use EditorTemplateDefinition instead of EditorDefinition. When using an EditorTemplateDefinition, you will target for a specific property : "Image". What will be under...
View ArticleNew Post: CheckComboBox tooltip
I would like to display a tooltip for each element in the combobox. I have tried to set a itemtemplate in order to override the default item template in order to be able to set this tooltip but it...
View ArticleNew Post: CheckComboBox tooltip
Hi, The following code works. I redefined the ItemTemplate for the CheckComboBox. When the mouse goes over an item of the CheckComboBox, its tooltip is displayed.<Window.Resources> <x:Array...
View ArticleNew Post: CheckComboBox tooltip
Ho sorry I was using version 2.0 (with personnal patch concerning zoombox). And i have read the change log of the version 2.2 (plus) instead of the version 2.1 log that's why i haven't seen that the...
View ArticleNew Post: PropertyDescriptor doesn't work for PropertyGrid in community edition?
I need dynamic object binding to PropertyGrid control, so I created a class that inherits PropertyDescriptor, but the only properties/methods gets called are NameHashCode and PropertyType.GetValue,...
View ArticleNew Post: PropertyDescriptor doesn't work for PropertyGrid in community edition?
Hi, You are right. The CustomPropertyItem's constructor is not public in the OpenSource version. The Toolkit "Plus" makes it available. Here are the PropertyGrid features that are added in the "Plus"...
View ArticleNew Post: PropertyGrid - Tab order while editing
Hi, Firstly, thanks for the great work on the toolkit. While using the PropertyGrid to edit the properties of an object, if the user tabs the tab sets focus on the next line/row but sets the focus on...
View ArticleNew Post: How to focus on certain property's editor?
I've seen this link, but my property.Editor is null. How do I set this property's editor (a simple string property) as the focused element? btw - I'm using the Community Edition, if it helps.
View ArticleNew Post: DataGrid - Changing the GroupHeaderControl Background Color based...
I am trying the change the background color for the GroupHeaderControl. I am able the set the background color but I need to change the color based on its value. Ex) Element1 --> Element2 -->...
View ArticleNew Post: PropertyGrid - Tab order while editing
Hi, Thank you for your feedback, Issue https://wpftoolkit.codeplex.com/workitem/20819 has been created.
View ArticleNew Post: How to focus on certain property's editor?
Hi, Can you paste a code snippet showing why the Editor is null ? Thanks.
View ArticleNew Post: DataGrid - Changing the GroupHeaderControl Background Color based...
Hi, You can use a Converter to scan for "Element2" .<local:MyConverter x:Key="MyConverter" /> <Style TargetType="{x:Type xcdg:GroupHeaderControl}"> <Setter Property="Template">...
View ArticleNew Post: DataGrid - Changing the GroupHeaderControl Background Color based...
Hi Boucher, Thanks!! It's working fine.
View Article