Here is My Designer.cs code.
this.gbFacets.Location = new System.Drawing.Point(590, 69);
this.gbFacets.Name = "gbFacets";
this.gbFacets.Size = new System.Drawing.Size(255, 355);
this.gbFacets.TabIndex = 7;
this.gbFacets.TabStop = false;
this.gbFacets.Text = "Facets Found";
this.gbFacets.Enter += new System.EventHandler(this.gbFacets_Enter);
here is my Formmain code
private void AddFacetsToPictureBoxes(List<PictureBox> pictureBoxes)
{
foreach (var pic in pictureBoxes)
this.gbFacets.Controls.Add(pic);
}
i got the pics added to Groupbox but if no of pics increases then, it shows only some pics. so please tell me how can i make this groupbox scrollable to view all pics.