Ejemplo n.º 1
0
 public static WordWindow GetWordWindow(Words.WordEntryRow word)
 {
     if (_wordWindow == null)
     {
         _wordWindow         = new WordWindow(word);
         _wordWindow.Closed += _wordWindow_Closed;
     }
     return(_wordWindow);
 }
Ejemplo n.º 2
0
 private static void _wordWindow_Closed(object sender, System.EventArgs e)
 {
     _wordWindow = null;
 }