Ejemplo n.º 1
0
        private void AddQuote_Click(object sender, EventArgs e)
        {
            AddQuote viewAddQuoteForm = new AddQuote();

            viewAddQuoteForm.Tag = this;
            viewAddQuoteForm.Show(this);
            this.Hide();
        }
Ejemplo n.º 2
0
        private void btAddNewQuote_Click(object sender, EventArgs e)
        {
            var addQuote = new AddQuote();

            addQuote.Tag = this;
            addQuote.Show();
            this.Hide();
        }
Ejemplo n.º 3
0
        private void button1_Click(object sender, EventArgs e)
        {
            AddQuote AddQuoteForm = new AddQuote {
                Tag = this
            };

            AddQuoteForm.Show(this);
        }