AllTheTimeWorld.com

csharp dialogsCreate the status strip for the Happy Birthday App

Create the status strip for the Happy Birthday App

Create the status strip (at the bottom of the form) & add code to display the current time

Create the status strip for the Happy Birthday App

Create the status strip (at the bottom of the form) & add code to display the current time


Text of video

This shows how to add the status strip.

private void timer1_Tick_1(object sender, EventArgs e)
{
    toolStripStatusTime.Text = System.DateTime.Now.ToString();
 }
Be sure to click Save All after completing each step.