TableLayoutPanel, programatically change control position in row/column

Answered
0
0

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

  • You must to post comments
Best Answer
0
0

tableLayoutPanel1.SetColumn(control, col); SetRow(), SetColumnSpan(), SetRowSpan().

https://docs.microsoft.com/en-us/dotnet/api/system.windows.forms.tablelayoutpanel.setcolumn?view=net-5.0

  • You must to post comments
0
0
  • You must to post comments
Showing 2 results
Your Answer

Please first to submit.