Beispiel #1
0
 public WordWindow(Words.WordEntryRow word)
 {
     InitializeComponent();
     Word   = word;
     dsWord = (Words)_word.Table.DataSet;
     cbBooks.ItemsSource = dsWord.Book;
     RefreshWord();
 }
Beispiel #2
0
 public static WordWindow GetWordWindow(Words.WordEntryRow word)
 {
     if (_wordWindow == null)
     {
         _wordWindow         = new WordWindow(word);
         _wordWindow.Closed += _wordWindow_Closed;
     }
     return(_wordWindow);
 }