Пример #1
0
 private void CopyCommand_Executed(object sender, ExecutedRoutedEventArgs e) => Text_field.Copy();
Пример #2
0
 private void CutCommand_Execute(object sender, ExecutedRoutedEventArgs e) => Text_field.Cut();
Пример #3
0
 private void PasteCommand_Executed(object sender, ExecutedRoutedEventArgs e) => Text_field.Paste();
Пример #4
0
 public MainWindow()
 {
     InitializeComponent();
     Text_field.Focus();
 }