Writing Code in C#
Text of video
private void Form1_Load(object sender, EventArgs e)
{
//Change some properties at run time
Text = "Hello Earthlings";
this.BackColor = Color.SlateBlue;
this.BackgroundImageLayout = ImageLayout.Tile;
}
That's all! Congratulations on completing all of the lessons in csharp!