728x90
for (int i = 0; i < 10; i++)
{
string istr = i.ToString();
Button newButton = new Button();
newButton.Text = istr;
newButton.Name = "btn" + istr;
newButton.Visible = true;
newButton.BackColor = Color.AliceBlue;
newButton.ForeColor = Color.Black;
listBox1.Controls.Add(newButton);
newButton.Dock = DockStyle.Top;
newButton.BringToFront();
}