Exemplo n.º 1
0
        public void AddEnumItem(string DicItem, ref int enumData, Type type)
        {
            var ppitm = new PropertyGridItem(DicItem, ref enumData, type, false);

            Data.Add(ppitm);
        }
Exemplo n.º 2
0
        public void AddBoolItem(string DicItem, ref bool Value)
        {
            var ppitm = new PropertyGridItem(DicItem, ref Value, false);

            Data.Add(ppitm);
        }