public void on_share_clicked(object o, EventArgs args) { TreeSelection tSelect = BookTreeView.Selection; if(tSelect.CountSelectedRows() == 1) { TreeModel tModel; TreeIter iter; tSelect.GetSelected(out tModel, out iter); curAddrBook = (AddressBook) tModel.GetValue(iter,0); CollectionProperties colProp = new CollectionProperties(); colProp.TransientFor = CBApp; colProp.Collection = curAddrBook; colProp.ActiveTag = 1; colProp.Run(); } }
public void on_properties(object o, EventArgs eventArgs) { CollectionProperties colProp = new CollectionProperties(); colProp.TransientFor = SloggerApp; colProp.Collection = curSlog; colProp.ActiveTag = 1; colProp.Run(); }