コード例 #1
0
ファイル: PromptCreds.cs プロジェクト: camlen92/sdtools
        private void Help(object sender, EventArgs e)
        {
            Help_Form frm = new Help_Form();

            frm.Location      = this.Location;
            frm.StartPosition = FormStartPosition.Manual;
            frm.FormClosing  += delegate { this.Show(); };
            frm.Show();
            this.Hide();
        }
コード例 #2
0
        /*
         * Access the Help Menu
         */
        private void Help(object sender, EventArgs e)
        {
            // This function calls the Help_Form, opens it, and hides the current form.
            Help_Form frm = new Help_Form();

            frm.Location      = this.Location;
            frm.StartPosition = FormStartPosition.Manual;
            frm.FormClosing  += delegate { this.Show(); };
            frm.Show();
            this.Hide();
        }