Пример #1
0
        /*        public static void showMenu()
         *      {
         *          currentMenu.Show();
         *      } */

        private void AddQuoteButton_Click(object sender, EventArgs e)
        {
            AddQuote viewAddQuote = new AddQuote();

            viewAddQuote.Tag = this;
            viewAddQuote.Show(this);
            // This is technically this.Hide();
            Hide();
        }