public RandomLabel() { InitializeComponent(); Random r = new Random(); this.Text = r.Next(100).ToString(); this.BackColor = Color.Yellow; }