Esempio n. 1
0
 public static TextChangeWindow GetTextChangeWin(TextListObject txtObj)
 {
     if (textChangeWin is null)
     {
         textChangeWin = new TextChangeWindow();
     }
     textChangeWin.txtObj = txtObj;
     textChangeWin.changeTextTxtBox.Text = txtObj.RealText;
     return(textChangeWin);
 }
Esempio n. 2
0
 private void ChangeTextBtnClick()
 {
     App.TextChangeWin = TextChangeWindow.GetTextChangeWin(corpusListSt.Children[selectTextIndex] as TextListObject);
     App.TextChangeWin.Show();
 }