Inheritance: System.Windows.Forms.Form
示例#1
0
 public static void SplashForm()
 {
     m_frmAboutBox = new AboutBox();
     m_frmAboutBox.m_timeout = 5000;
     m_frmAboutBox.m_bAutoClose = true;
     Application.Run(m_frmAboutBox);
 }
 private void toolStripMenuItem_HelpAbout_Click(object sender, EventArgs e)
 {
     AboutBox ab = new AboutBox();
     ab.ShowDialog();
 }