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