New Post: Text color in a propertygrid
Hi, You can set the Foreground for the editor of strings : the PropertyGridEditorTextBox :<xctk:PropertyGrid x:Name="_propertyGrid"> <xctk:PropertyGrid.Resources> <Style...
View ArticleNew Post: Propertygrid CheckedTreeView (DropDownButton)
Hi, In the Plus version of the Toolkit, you can create Custom PropertItems and build them as a tree :var subDemo111 = new CustomPropertyItem() { DisplayName = "subDemo111", Value = false }; var...
View ArticleNew Post: Propertygrid CheckedTreeView (DropDownButton)
Image link : http://postimg.org/image/v1m73wtnx/
View ArticleCommented Unassigned: PropertyGrid Category Header Style [22206]
How do we style the PropertyGrid Category Header (GroupItem)? I would like to be able to style the Background, Border and glyphs (Up_Arrow and Down_Arrow) in the Category Header. I can style other...
View ArticleNew Post: DateTimePicker popup size
Hi, From what I can see, you have used DateTimePicker.TimePickerVisibility="Hidden". Any others properties used ? The Calendar header is not horizontally centered. It should be. Have you changed...
View ArticleNew Comment on "DateTimePicker"
Hi, This is fixed in v2.9. Only 1 event is raised on ValueChanged.
View ArticleNew Post: PropertyGrid search improvements
Hi, -Search including subclasses (ExpandableObject) : This is a known issue at Xceed. Issue https://wpftoolkit.codeplex.com/workitem/22226 has been created in CodePlex. You can vote for it -Search...
View ArticleNew Post: Access DatePickerTextBox of DatePicker control
I am trying to get access to the DatePickerTextBox of the DatePicker control. The reason is to highlight the different date parts as a user types in the date. Desired behavior: The user clicks into the...
View ArticleNew Post: [Propertygrid] Show/Hide Properties depending on enum
Hello, I have the following data structure public class DailyBackupOptions { public int EveryXDays { get; set; } } public class WeeklyBackupOptions { public List<DayOfWeek> DaysOfTheWeek { get;...
View ArticleNew Post: MessageBox only opens once
I resolved it. It seems to be related to the fact that my main window is winforms and the rest hosted with elementhost. I noticed that it was not just your messagebox that had a problem opening more...
View ArticleNew Post: Access DatePickerTextBox of DatePicker control
Hi, You can access the TextBox of the DateTimePicker via its "TextBox" property : public class MyDateTimePicker : DateTimePicker { public override void OnApplyTemplate() { base.OnApplyTemplate(); var...
View ArticleNew Post: [Propertygrid] Show/Hide Properties depending on enum
Hi, in v2.9, you can register to event "PropertyGrid.IsPropertyBrowsable". On the initialisation of each PropertyItem, this event will be called. Into it, you can tell if a PropertyItem is visible or...
View ArticleNew Post: How to set the title for LayoutAnchorable from MVVM binding?
Hi, Unfortunately, the LayoutAnchorable is not part of the VisualTree, since a LayoutAnchorableControl will be created from it. But you can add a proxy which uses binding :<StackPanel>...
View ArticleNew Post: How to change the border brush for LayoutAnchorable?
Hi, You can define a style for LayoutAnchorableControl and set the BorderBrush and BorderThickness :<Style TargetType="{x:Type xcad:LayoutAnchorableControl}"> <Setter Property="BorderBrush"...
View ArticleNew Post: DateTimePicker popup size
I'm using 2.6.0 Here is my relevant XAML:<Style TargetType="xctk:DateTimePicker"> <Setter Property="Width" Value="100" /> <Setter Property="Height" Value="22" /> <Setter...
View ArticleCommented Unassigned: PropertyGrid not thread safe for multiple ui threads...
Hi,I'll just reopend this issue - I just tested it with v2.6 but the reported issue still exists!* I am starting a window in its own UI thread.* The window contains a propertygrid. At some time I close...
View ArticleNew Post: PropertyGrid Expand/Collapse All
Hello, Are there methods which will expand or collapse certain or all ExpandableObject properties? I also think these actions would be a great fit as buttons in the top toolbar. Thanks.
View Article