Inheritance: ICustomTypeDescriptor
Example #1
0
 private void AddSpellToExplorer(SpellEntry S)
 {
     DynamicObject D = new DynamicObject(S);
     if (cbDBfields.Checked)
         D.Filter = String.Join(";", SpellDBC.SpellDBCFields.ToArray());
     pg_Spell.SelectedObject = D;
 }
Example #2
0
 public GenericPropertyDescriptor(string name, Attribute[] attrs, DynamicObject S)
     : base(name, attrs)
 {
     _SE = S;
     f   = typeof(SpellEntry).GetField(name);
 }
Example #3
0
 public GenericPropertyDescriptor(string name, Attribute[] attrs, DynamicObject S)
     : base(name, attrs)
 {
     _SE=S;
     f = typeof(SpellEntry).GetField(name);
 }