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