public BoolVariableGrid(tblVariable tocopy) : base(tocopy) { try { tblBOOL tblbool = new tblBOOL(); tblbool.VarNameID = this.VarNameID; tblbool.SelectVarID(); this.Text0 = tblbool.Text0; this.Text1 = tblbool.Text1; Loaded = true; } catch (Exception ex) { MessageBox.Show(ex.Message); } }
public bool Contains(tblBOOL item) { return(List.Contains(item)); }
public int IndexOf(tblBOOL item) { return(List.IndexOf(item)); }
public void Insert(int index, tblBOOL item) { List.Insert(index, item); this.OntblBOOLChanged(EventArgs.Empty); }
public void Remove(tblBOOL item) { List.Remove(item); this.OntblBOOLChanged(EventArgs.Empty); }
public void Add(tblBOOL item) { List.Add(item); this.OntblBOOLChanged(EventArgs.Empty); }