Add an About Box to a program
An About Box is one type of form that can be added to a program.
Add an About Box to a program
An About Box is one type of form that can be added to a program.
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("")]