You have to contact the maintainer of the NuGet package in order to determine that. In this case, Xceed. He/they has to push it into the NuGet repository. Then you can update to the latest version. Although if I were you, I'd give it a day or two before contacting....
c#,wpf,xaml,propertygrid,xceed
Do you mean something like this: class Properties { private List<Assembly> assemblies = new List<Assembly>(); [DisplayName("ExpectedAssemblyVersions")] [Description("The expected assembly versions.")] [Category("Mandatory")] [Editor(typeof(CollectionEditor), typeof(CollectionEditor))] public List<Assembly> Assemblies { get { return assemblies; } set { assemblies = value; } } } class Assembly { public string Name { get; set; }...
After using breakpoints to examine the state of the columns, I have discovered that auto generated columns in Xceed do not use the DataGridBindingInfo property as I originally thought. Instead it uses the depreciated DisplayMemberBinding property. I was able to solve my problem by modifying this property as shown below....