/// <summary> /// Pastes content from the clipboard /// </summary> public void Paste() { if (textBoxTemplated != null) { textBoxTemplated.Paste(); } else { textBox.Paste(); } }