/// <summary> /// User clicked on the Stash menu item /// </summary> private void MenuMainStashClick(object sender, EventArgs e) { FormStash formStash = new FormStash(); if (formStash.ShowDialog() == DialogResult.OK) { App.DoRefresh(); } }
/// <summary> /// User clicked on the Stash menu item /// </summary> private void MenuMainStashClick(object sender, EventArgs e) { FormStash formStash = new FormStash(); if (formStash.ShowDialog() == DialogResult.OK) App.DoRefresh(); }