About









How do I use About
Below are practical examples compiled from projects for learning and reference purposes

Featured Snippets


File name: Home.cs Copy
56         private void aboutDeveloperToolStripMenuItem_Click(object sender, EventArgs e)
57         {
58             MessageBox.Show("Developed By: Neeta Kadam");
59         }
File name: frmAbout.cs Copy
13         public frmAbout()
14         {
15             InitializeComponent();
16             this.Text = String.Format("About {0}", AssemblyTitle);
17             this.labelProductName.Text = AssemblyProduct;
18             this.labelVersion.Text = String.Format("Version {0}", AssemblyVersion);
19             this.labelCopyright.Text = AssemblyCopyright;
20             this.labelCompanyName.Text = AssemblyCompany;
21             this.textBoxDescription.Text = AssemblyDescription;
22         }
File name: frmAbout.cs Copy
104         private void frmAbout_Load(object sender, EventArgs e)
105         {
106
107         }
File name: frmMainMenu.cs Copy
37         private void aboutToolStripMenuItem_Click(object sender, EventArgs e)
38         {
39             frmAbout frm = new frmAbout();
40             frm.Show();
41         }
File name: notepad1.cs Copy
46         private void aboutNotepadToolStripMenuItem_Click(object sender, EventArgs e)
47         {
48             MessageBox.Show("All Right Reserved with Hassan ", "About Notepad", MessageBoxButtons.OK, MessageBoxIcon.Information);
49         }
File name: AboutCollege.cs Copy
14         public AboutCollege()
15         {
16             InitializeComponent();
17         }
File name: AboutCollege.cs Copy
24         private void AboutSchool_Load(object sender, EventArgs e)
25         {
26
27         }
File name: Home.cs Copy
49         private void feedbackToolStripMenuItem_Click(object sender, EventArgs e)
50         {
51             AboutCollege obj6 = new AboutCollege();
52             obj6.ShowDialog();
53         }
File name: Home.cs Copy
55         private void aboutSchoolToolStripMenuItem_Click(object sender, EventArgs e)
56         {
57             this.Close();
58         }
File name: frmAbout.cs Copy
20   public frmAbout()
21   {
22
23    InitializeComponent();
24   }

Download file with original file name:About

About 182 lượt xem

Gõ tìm kiếm nhanh...