I added 1000 of group Controls in the TableLayoutPanel
at run time. After execution it shows around 300 controls in the respective rows. After the 300th row, rows are added but controls in the respective added rows are not visible.
My programming code/logic goes like this:
Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
Dim tableLayoutPanel As New TableLayoutPanel
tableLayoutPanel.Dock = DockStyle.Fill
tableLayoutPanel.AutoScroll = True
tableLayoutPanel.RowCount = 1000
For i = 0 To 999
Dim groupCtrl As New DevExpress.XtraEditors.GroupControl
groupCtrl.Text = String.Format("Group Control {0}", i)
groupCtrl.Dock = DockStyle.Fill
groupCtrl.Visible = True
groupCtrl.Enabled = True
tableLayoutPanel.Controls.Add(groupCtrl, 0, i)
Next
Dim c = tableLayoutPanel.Controls.Count
Me.Controls.Add(tableLayoutPanel)
End Sub
How can I view all the controls in the TableLayoutPanel
?