Text of videoIn this video we add an about box to a project.
private void mnuAbout_Click(object sender, EventArgs e)
{
AboutBox1 about = new AboutBox1();
about.ShowDialog();
}
We also made changes to AssemblyInfo.cs:
[assembly: AssemblyTitle("standardfile")]
[assembly: AssemblyDescription("Demonstrate About Box")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Zebra0.com")]
[assembly: AssemblyProduct("standardfile")]
[assembly: AssemblyCopyright("Copyright © 2018")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
End of lesson, Next lesson: