Beispiel #1
0
 void CopyILBytesExecuted(object sender, ExecutedRoutedEventArgs e) =>
 CopyILBytesCodeCommand.Execute(documentTabService.ActiveTab.TryGetDocumentViewer(), methodAnnotations);
Beispiel #2
0
 void CopyILBytesCanExecute(object sender, CanExecuteRoutedEventArgs e) =>
 e.CanExecute = CopyILBytesCodeCommand.CanExecute(documentTabService.ActiveTab.TryGetDocumentViewer());
Beispiel #3
0
 void CopyILBytesCanExecute(object sender, CanExecuteRoutedEventArgs e)
 {
     e.CanExecute = CopyILBytesCodeCommand.CanExecute(fileTabManager.ActiveTab.TryGetTextEditorUIContext());
 }
Beispiel #4
0
 void CopyILBytesExecuted(object sender, ExecutedRoutedEventArgs e)
 {
     CopyILBytesCodeCommand.Execute(fileTabManager.ActiveTab.TryGetTextEditorUIContext(), methodAnnotations);
 }
Beispiel #5
0
 void CopyILBytesCanExecute(object sender, CanExecuteRoutedEventArgs e) =>
 e.CanExecute = CopyILBytesCodeCommand.CanExecute(fileTabManager.ActiveTab.TryGetDocumentViewer());