.NET control for providing a UI that allows the properties of one or more objects to be viewed and edited.
I have a class with a set of properties As given below. class ContactInfo { [ReadOnly(true)] [Category("Contact Info")] public …
c# .net propertygridI have a List<> (my custom class). I want to display a specific item in this list in …
c# winforms propertygridHow do you modify a propertygrid at runtime in every way? I want to be able to add and remove …
c# .net winforms propertygridI have a custom object type which has to be editable in PropertyGrid: public class CustomObjectType { public string Name { get; …
c# winforms propertygridI want to add some custom PropertyGrid-centric Attributes to the object's properties, to provide richer editing, hide some values and …
c# .net propertygrid system.componentmodel typedescriptorI am binding an enum to a property grid like this: public enum myEnum { Ethernet, Wireless, Bluetooth } public class MyClass { …
c# arrays winforms enums propertygridThe problem is simple(and I hope that this have a simple solution!): I want to hide ( Browsable(false) ) the …
c# .net properties propertygridI have a Winform application which uses colour to highlight certain things. I would like to allow the users to …
c# winforms data-binding inotifypropertychanged propertygridSo for this project I'm working on, we've decided to use the .NET PropertyGrid control. The propertygrid gets populated with …
c# .net propertygridI want to take an object, let's say this object: public class BenchmarkList { public string ListName { get; set; } public IList&…
c# winforms propertygrid