private BoxControl GetNewSourceBox(int i, string val) { var bf = new BoxControl(i, val, false, false) { Height = 30, Width = 30, ShowIndex = false }; return(bf); }
private BoxControl GetNewDataBox(int i) { var bf = new BoxControl(i, data[0].ToString(), false, true) { Width = 35, Height = 35 }; return(bf); }
private BoxControl GetNewSourceBox(int i, string val) { var bf = new BoxControl(i, val, false, false) { Height = 30, Width = 30, ShowIndex = false }; return bf; }
private BoxControl GetNewDataBox(int i) { var bf = new BoxControl(i, data[0].ToString(), false, true) { Width = 35, Height = 35 }; return bf; }