Esempio n. 1
0
 public CustomPropertyEventArgs(CustomProperty p, object v)
 {
     m_Property = p;
     m_Value    = v;
 }
Esempio n. 2
0
 public CustomPropertyDescriptor(CustomProperty item, PropertySheet owner, string name, Attribute[] attributes)
     : base(name, attributes)
 {
     m_Owner    = owner;
     m_Property = item;
 }
Esempio n. 3
0
 // Add a property to the sheet
 public void AddProperty(CustomProperty prop)
 {
     m_Properties.Add(prop);
 }