New Post: Set minimum date and time spinner steps
Thank you for the reply, the code you suggested worked nicely! Congratulations for the great work!
View ArticleNew Post: DateTimePicker popup size
I will attach three images: Pic1: You can see that only the "20" of 2016 shows Pic2: Shows that the year completely disappears for long months. Pic3: Using May, you can see that the month, year show up...
View ArticleNew Post: PropertyGrid search improvements
It would be nice to some improvements to the PropertyGrid search bar such as: Search including subclasses (ExpandableObject) Search including any point of a property name, not just the beginning of it Etc
View ArticleNew Post: propertyGrid show items for expanded collection
How, do I display a ObservableCollection<> of custom objects in the PropertyGrid, in which each List Item can be expanded to display the custom objects properties. (ie: ----PropertyGrid-----...
View ArticleNew Post: MessageBox only opens once
Hi, I cannot reproduce this in v2.6 and up. I have a button that when clicked, execute the code to pop the MessageBox. I click a MessageBox button to close it. I then click my button again to re-open...
View ArticleNew 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 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 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 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