Exemplo n.º 1
0
        public void AddItem(string text, bool closeOnSelection, SelectionItem.EntrySelectedHandler selectionHandler)
        {
            var item = new SelectionItem(text, closeOnSelection);
            if(selectionHandler!=null)
                item.EntrySelected += selectionHandler;

            AddItem(item);
        }
Exemplo n.º 2
0
 public void AddItem(SelectionItem item)
 {
     items.Add(item);
 }