Esempio n. 1
0
 public void AddItem(string text, int depth, string description)
 {
     var ind = panelEx_container.Controls.Count;
     var cntrl = new SymbolItem(text, ind, depth, description);
     cntrl.ItemStopCollectingClick += cntrl_ItemStopCollectingClick;
     panelEx_container.Controls.Add(cntrl);
     //if(SelectedItem==-1) SelectFirstItem();
 }
Esempio n. 2
0
        public void AddItem(string text, int depth, string description)
        {
            var ind   = panelEx_container.Controls.Count;
            var cntrl = new SymbolItem(text, ind, depth, description);

            cntrl.ItemStopCollectingClick += cntrl_ItemStopCollectingClick;
            panelEx_container.Controls.Add(cntrl);
            //if(SelectedItem==-1) SelectFirstItem();
        }