private void btnAdd_Click(object sender, EventArgs e) { var addQuote = new AddQuote(); addQuote.Tag = this; addQuote.Show(); this.Hide(); }
public DisplayQuote(AddQuote addQ, DeskQuote deskQuote) { InitializeComponent(); add = addQ; _deskQuote = deskQuote; }