I am trying to use the customisable property tab feature of the WinForms PropertyGrid control but it has me beaten. I am specifically trying to use in runtime a PropertyGrid to display object properti
Say I have a class called StaffMember and it has a member variable of type Position. If I have an enum which defines all possible positions, then when I load the StaffMember object into my PropertyGr
I am trying to incorporate a property grid control with a class that has a list/collection of another class as one of the properties.Lets call them class A and the list would be containing class B for
Is there a simple way to find out if a property grid is currently bei开发者_运维百科ng edited by the user?
I have a PropertyGrid to which I add a array of bool-values. The array itself is marked as ReadOnly, which is recognized properly by the property grid.
In a PropertyGrid form element, when I add properties to my categories, some appear in Bold. Now, I know t开发者_JAVA技巧hat it suggests that they are the default values in that category. My question
Is there any way to change propertygrid griditem behavior in runtime? What I need is I have one property say \"Education\", if user selects \"Masters\" then the next griditem will show education rela
I have a class MyClassA that has an IList property.I am using a PropertyGrid control to display all the properties of MyClassA and I would like the list of MyClassB to be displayed and editable via th
I have a property grid that I am using for users to be able to configure objects for any开发者_开发问答 plugin that is written to be used in my application. I would like to be able to tell developers
Following my question, Is there a (preferably free) Prop开发者_Go百科ertyGrid for silverlight out there which supports editing ICollections?