public static void Display() { if (instance == null || instance.IsDisposed) instance = new Spellchecker(); if (!instance.Visible) instance.Show(); }
public static void Display() { if (instance == null || instance.IsDisposed) { instance = new Spellchecker(); } if (!instance.Visible) { instance.Show(); } }
private void DisplaySpellchecker(object sender, EventArgs e) { Spellchecker.Display(); }