for (int i = 0; i < 10; i++) { Label lbl = new Label(); lbl.Location = new Point(20, 20 * i); lbl.Text = i.ToString(); this.Controls.Add(lbl); }