Exemple #1
0
        private void aboutToolStripMenuItem_Click(object sender, EventArgs e)
        {
            FormAboutBox aboutBox = new FormAboutBox(iHelper);

            aboutBox.ShowDialog();
            aboutBox.Dispose();
        }
Exemple #2
0
        private void MenuItemAboutClick(object sender, EventArgs e)
        {
            FormAboutBox aboutDialog = new FormAboutBox(iHelper);

            aboutDialog.ShowDialog();
            aboutDialog.Dispose();
        }
        void Lbl_about_Click(object sender, System.EventArgs e)
        {
            FormAboutBox aboutBox = new FormAboutBox();

            aboutBox.ShowDialog();
        }