New Post: Sorting
Hello all, I just started using the PropertGrid and have the following question: Is it possible to disable the automatic sorting of the grid? The reason is that I have an object with only a few...
View ArticleNew Post: Sorting
for custom sort properties use PropertyOrderAttribute:[Xceed.Wpf.Toolkit.PropertyGrid.Attributes.PropertyOrder(10)] public string FirstName { get; set; }...
View ArticleNew Post: PropertyGrid & TypeConverterAttribute
Do you plans to implement support for this attribute? Using attribute "ItemsSource" does not allow access to an instance of an object from a function "GetValues". For example, the function "GetValues"...
View ArticleNew Post: ChildWindow in a UserControl
Sorry but I don't understand what you meant with <!-- This grid is "overlaped" over the "screen" content -->
View ArticleNew Post: PropertyGrid: SelectedObjects (properties of multiple objects)
The Property "SelectedObjects" is available in the PropertyGrid "Plus" Edition since version 1.9.
View ArticleNew Post: PropertyGrid & TypeConverterAttribute
Yes, version 2.0 has a "PropertiesSource" property that work in the same pattern than the ItemsControl.ItemsSource property. This is a "plus" only feature.
View ArticleNew Post: ChildWindow in a UserControl
<!-- This is the main window --> <Window> <!-- This is the "Top Grid" Cover the entire window--> <Grid HorizontalAlignement="Stretch" VerticalAlignement="Stretch"> <!-- Grid...
View ArticleNew Post: There is a way to refresh propertyGrid without reassign the...
Hi, I implemented an expandable collection but when i add some objects to the collection by the propertyGrid, there is no update. So i implemented a reload function witch save the state of the...
View ArticleNew Post: ChildWindow in a UserControl
Yeah but that doesn't help because the UserControl contains the ChildWindow, its a logical part of it. So implementing it outside of it would be very strange.
View ArticleNew Post: There is a way to refresh propertyGrid without reassign the...
did you try PropertyGrid.Update() method ?
View ArticleNew Post: There is a way to refresh propertyGrid without reassign the...
Yes i try PropertyGrid.Update() but it doesn't work because when i add an item to my collection the propertyGrid need to create the propertyItem of the new element. (I've done an expandable collection).
View ArticleNew Post: Prevent value change when focus is lost
I think you need a custom editor. You can set the binding to explicit and update whenever you want :)
View ArticleNew Post: v2.0.0 Community Edition
Just a quick update: v2.0.0 of the Community edition will be posted in a few business days. There will be 67 improvements in this release.You can see the list of improvements here.
View ArticleNew Post: Color of gridlines
Hello all, is it possible to change the color of the gridlines? On my customers computers the gridlines look so faint that they are almost invisible. thanks, Nick
View ArticleNew Post: Color of gridlines
Sorry for the incomplete post. I am using the PropertyGrid. So the question is: is it possible to change the gridline color of the PropertyGrid? Nick
View ArticleNew Post: v2.0.0 Community Edition
As I see, in the New Example the TimeSpan UpDown in PropertyGird can still not be used to Enter a Range greater then a Day. Any change that this fix get included some time? :...
View ArticleNew Post: BusyIndicator with MVVM: binding IsBusy to a property in the ViewModel
I think, you are not properly telling the DataContext in xaml.
View ArticleNew Post: Sorting
Any chance in the future to support the DisplayAttribute that is available in the ComponentModel.DataAnnotation.dll? (It contains many handy properties, being one of them the Order int property. It...
View ArticleNew Post: Sorting
support the DisplayAttribute available[Xceed.Wpf.Toolkit.PropertyGrid.Attributes.PropertyOrder(10)] [DisplayName("First name")] public string FirstName { get; set; }
View Article