Example #1
0
 void Load(Item item, TreePath path)
 {
     Application.Invoke((sender, args) => {
         TreeIter iter;
         if (store.GetIter(out iter, path))
         {
             store.SetValue(iter, 0, new ObjectRow(item));
         }
     });
 }
 public ItemRow (Item item, TreePath path)
 {
     Item = item;
     Path = path;
 }
 void Load (Item item, TreePath path)
 {
     Application.Invoke ((sender, args) => {
         TreeIter iter;
         if (store.GetIter (out iter, path)) {
             store.SetValue (iter, 0, new ObjectRow (item));
         }
     });
 }
Example #4
0
 public ItemRow(Item item, TreePath path)
 {
     Item = item;
     Path = path;
 }