コード例 #1
0
        private void aboutButton_Click(object sender, EventArgs e)
        {
            AboutBox about = new AboutBox();

            about.ShowDialog();
            about.Dispose();
        }
コード例 #2
0
        private void AboutBtn_Click(object sender, EventArgs e)
        {
            var about = new AboutBox();

            about.ShowDialog();
            about.Dispose();
        }
コード例 #3
0
        /// <Summary>
        /// Display the About box dialog
        /// <Summary>
        /// <param name="sender">The source of the event.</param>
        /// <param name="e">A <see cref="EventArgs"/> that contains the event data.</param>
        private void OnAboutClick(object sender, EventArgs e)
        {
            AboutBox aboutBox = new AboutBox();

            aboutBox.ShowDialog();
            aboutBox.Dispose();
        }
コード例 #4
0
        private void aboutToolStripMenuItem_Click(object sender, EventArgs e)
        {
            AboutBox tAbout = new AboutBox();

            tAbout.ShowDialog();
            tAbout.Dispose();
        }
コード例 #5
0
        private void aboutSharpWiredToolStripMenuItem_Click(object sender, EventArgs e)
        {
            var box = new AboutBox();

            box.ShowDialog();
            box.Dispose();
        }
コード例 #6
0
        public void ShowAboutDialog()
        {
            var about = new AboutBox
            {
                StartPosition = FormStartPosition.CenterParent
            };

            about.ShowDialog();
            about.Dispose();
        }
コード例 #7
0
ファイル: MainForm.cs プロジェクト: dalinhuang/appcollection
 private void aboutButton_Click(object sender, EventArgs e)
 {
     AboutBox about = new AboutBox();
     about.ShowDialog();
     about.Dispose();
 }