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