this.ImagePanel.FlowDirection = FlowDirection.LeftToRight;
this.ImagePanel.AutoScroll = true;
for (int i = 0; i < 25; i++)
{
ButtonAdv button = new ButtonAdv();
button.UseVisualStyle = true;
button.Appearance = ButtonAppearance.Metro;
button.Size = new Size(80, 80);
button.BackgroundImage = this.imageListAdv1.Images[0];
button.MetroColor = Color.White;
button.ImageAlign = ContentAlignment.MiddleCenter;
this.ImagePanel.Controls.Add(button);
}
|