public void RemoveItem(IToolbarItemBackend backend)
 {
     Control.DropDownItems.Remove(backend.ToSwf());
 }
 public void InsertItem(int index, IToolbarItemBackend backend)
 {
     Children.Insert(index, backend);
 }
Esempio n. 3
0
 public void RemoveItem(IToolbarItemBackend backend)
 {
 }
 public void InsertItem(int index, IToolbarItemBackend backend)
 {
     Control.DropDownItems.Insert(index, backend.ToSwf());
 }
Esempio n. 5
0
 public void InsertItem(int index, IToolbarItemBackend backend)
 {
 }
Esempio n. 6
0
 public void RemoveItem(IToolbarItemBackend backend)
 {
     Control.Children.Remove(backend.ToWpf());
 }
Esempio n. 7
0
 public void InsertItem(int index, IToolbarItemBackend backend)
 {
     Control.Children.Insert(index, backend.ToWpf());
 }
Esempio n. 8
0
 public void RemoveItem(IToolbarItemBackend item)
 {
     Widget.Remove(item.ToGtk());
 }
Esempio n. 9
0
        public void InsertItem(int index, IToolbarItemBackend item)
        {
            var w = item.ToGtk();

            Widget.Insert(w, index);
        }