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