Exemple #1
0
 private void DisplayQuote_button(object sender, EventArgs e)
 {
     AddQuote AddQuoteForm = new AddQuote
     {
         Tag = this
     };
     AddQuoteForm.Show(this);
     this.Hide();
 }
Exemple #2
0
        private void AddQuoteButton_Click(object sender, EventArgs e)
        {
            AddQuote AddNewQuoteForm = new AddQuote
            {
                Tag = this
            };

            AddNewQuoteForm.Show(this);
            this.Hide();
        }
 internal void Hide(AddQuote addQuote)
 {
     throw new NotImplementedException();
 }