Hi,
how can position of control in TableLayoutPanel be programatically changed (in FormLoad event). Requirement is to move TextBox control from Column 0, Row 0 to for example Column 2, Row 0 ?
Thanx,
D
tableLayoutPanel1.SetColumn(control, col); SetRow(), SetColumnSpan(), SetRowSpan().
There is also SetCellPosition() https://docs.wisej.com/api/wisej.web/containers/tablelayoutpanel#setcellposition-control-position
Please login first to submit.