Esempio n. 1
0
 /// <summary>
 /// Cuts selected content to the clipboard
 /// </summary>
 public void Cut()
 {
     if (textBoxTemplated != null)
     {
         textBoxTemplated.Cut();
     }
     else
     {
         textBox.Cut();
     }
 }