コード例 #1
0
ファイル: MainMenu.cs プロジェクト: wbutlerj/MegaDesk-Jones
        private void btnAddQuote_Click(object sender, EventArgs e)
        {
            //create addquote form
            var frmAddQuote = new AddQuote(this);

            //add reference to MainMenu
            //frmAddQuote.Tag = this;

            //show new Addquote Form
            frmAddQuote.Show();

            //hide mainmenu
            this.Hide();
        }