private void SearchQuotes_Click(object sender, EventArgs e)
        {
            SearchQuotes SearchQuotesForm = new SearchQuotes();

            SearchQuotesForm.Tag = this;
            SearchQuotesForm.Show(this);
            this.Hide();
        }
示例#2
0
        private void button3_Click_1(object sender, EventArgs e)
        {
            SearchQuotes SearchQuotesForm = new SearchQuotes {
                Tag = this
            };

            SearchQuotesForm.Show(this);
        }