際際滷

際際滷Share a Scribd company logo
Vs c# lecture10
Vs c# lecture10
A splash screen is a graphical control element consisting of a window containing an
image, a logo, and the current version of the software. A splash screen usually appears
while a program is launching.
private void timer1_Tick(object sender, EventArgs e)
{
Form2 fr = new Form2();
this.Hide();
fr.Show();
timer1.Enabled = false;
}
private void timer2_Tick(object sender, EventArgs e)
{
Random r = new Random();
label1.ForeColor = Color.FromArgb(r.Next(0,255), r.Next(0, 255),r.Next(0, 255));
}
Vs c# lecture10

More Related Content

Vs c# lecture10

  • 3. A splash screen is a graphical control element consisting of a window containing an image, a logo, and the current version of the software. A splash screen usually appears while a program is launching.
  • 4. private void timer1_Tick(object sender, EventArgs e) { Form2 fr = new Form2(); this.Hide(); fr.Show(); timer1.Enabled = false; } private void timer2_Tick(object sender, EventArgs e) { Random r = new Random(); label1.ForeColor = Color.FromArgb(r.Next(0,255), r.Next(0, 255),r.Next(0, 255)); }