Visual Programming Lectures using Visual Studio 2015 C# Windows Form Application
Lecturer: Saman M. Almufti / Kurdistan Region, Nawroz University
facebook: https://www.facebook.com/saman.malmufti
1 of 5
Download to read offline
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));
}