Menu
  • HOME
  • TAGS

Why is a package not available on NuGet?

c#,wpf,nuget,packages,xceed

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....

Xceed WPF propertyGrid Custom Collection editor

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; }...

Rebinding a Xceed DataGrid column to accept special characters

c#,wpf,xceed,xceed-datagrid

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....