Beispiel #1
0
 public void SetViews(CellViewCollection views)
 {
     theColumn.Clear();
     foreach (var v in views)
     {
         CellUtil.CreateCellRenderer(ApplicationContext, Frontend, this, theColumn, v);
     }
 }
Beispiel #2
0
 public void UpdateColumn(ListViewColumn col, object handle, ListViewColumnChange change)
 {
     Gtk.TreeViewColumn tc = (Gtk.TreeViewColumn)handle;
     if (change == ListViewColumnChange.Cells)
     {
         tc.Clear();
         MapColumn(col, tc);
     }
     else if (change == ListViewColumnChange.Title)
     {
         MapTitle(col, tc);
     }
 }