private void DisplayQuote_button(object sender, EventArgs e) { AddQuote AddQuoteForm = new AddQuote { Tag = this }; AddQuoteForm.Show(this); this.Hide(); }
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(); }