예제 #1
0
        private void ViewQuotes_Click(object sender, EventArgs e)
        {
            ViewAllQuotes viewAllQuoteForm = new ViewAllQuotes();

            viewAllQuoteForm.Tag = this;
            viewAllQuoteForm.Show(this);
            this.Hide();
        }
예제 #2
0
        private void btViewQuotes_Click(object sender, EventArgs e)
        {
            var viewAllQuotes = new ViewAllQuotes();

            viewAllQuotes.Tag = this;
            viewAllQuotes.Show();
            this.Hide();
        }
예제 #3
0
        private void button2_Click(object sender, EventArgs e)
        {
            ViewAllQuotes ViewAllQuotesForm = new ViewAllQuotes {
                Tag = this
            };

            ViewAllQuotesForm.Show(this);
        }