Example #1
0
 public override bool IsChecked(BreakpointCtxMenuContext context)
 {
     return(breakpointSettings.ShowParameterTypes);
 }
Example #2
0
 public override bool IsEnabled(BreakpointCtxMenuContext context)
 {
     return(false);           //TODO:
 }
Example #3
0
 public override void Execute(BreakpointCtxMenuContext context)
 {
     breakpointSettings.ShowTokens = !breakpointSettings.ShowTokens;
 }
Example #4
0
 protected override void Execute(BreakpointCtxMenuContext context)
 {
     BreakpointsControlCreator.BreakpointsControlInstance.listView.SelectAll();
 }
Example #5
0
 public override bool IsEnabled(BreakpointCtxMenuContext context) => DebugRoutedCommands.DeleteAllBreakpoints.CanExecute(null, appWindow.MainWindow);
Example #6
0
 public override void Execute(BreakpointCtxMenuContext context)
 {
     breakpointSettings.ShowReturnTypes = !breakpointSettings.ShowReturnTypes;
 }
Example #7
0
 public override bool IsChecked(BreakpointCtxMenuContext context)
 {
     return(breakpointSettings.ShowTypeKeywords);
 }
Example #8
0
 public override void Execute(BreakpointCtxMenuContext context)
 {
     breakpointsContent.Value.ListView.SelectAll();
 }
Example #9
0
 public override void Execute(BreakpointCtxMenuContext context)
 {
     context.VM.Remove(context.SelectedItems);
 }
Example #10
0
 public override void Execute(BreakpointCtxMenuContext context) => breakpointSettings.ShowOwnerTypes = !breakpointSettings.ShowOwnerTypes;
Example #11
0
 public override bool IsChecked(BreakpointCtxMenuContext context) => breakpointSettings.ShowReturnTypes;
Example #12
0
 public override bool IsChecked(BreakpointCtxMenuContext context) => breakpointSettings.ShowParameterNames;
Example #13
0
 public override void Execute(BreakpointCtxMenuContext context) => breakpointSettings.ShowParameterNames = !breakpointSettings.ShowParameterNames;
Example #14
0
 public override bool IsChecked(BreakpointCtxMenuContext context) => breakpointSettings.ShowTokens;
Example #15
0
 public override void Execute(BreakpointCtxMenuContext context)
 {
     breakpointSettings.ShowNamespaces = !breakpointSettings.ShowNamespaces;
 }
Example #16
0
 public override void Execute(BreakpointCtxMenuContext context)
 {
     DebugRoutedCommands.DisableAllBreakpoints.Execute(null, appWindow.MainWindow);
 }
Example #17
0
 public override bool IsChecked(BreakpointCtxMenuContext context)
 {
     return(breakpointSettings.ShowNamespaces);
 }
Example #18
0
 public override bool IsVisible(BreakpointCtxMenuContext context)
 {
     return(DebugRoutedCommands.DisableAllBreakpoints.CanExecute(null, appWindow.MainWindow));
 }
Example #19
0
 public override void Execute(BreakpointCtxMenuContext context)
 {
     breakpointSettings.ShowTypeKeywords = !breakpointSettings.ShowTypeKeywords;
 }
Example #20
0
 public override bool IsEnabled(BreakpointCtxMenuContext context)
 {
     return(context.SelectedItems.Length == 1 && context.SelectedItems[0].Breakpoint is ILCodeBreakpoint);
 }
Example #21
0
 protected override bool IsEnabled(BreakpointCtxMenuContext context)
 {
     return(context.SelectedItems.Length > 0);
 }
Example #22
0
 public override void Execute(BreakpointCtxMenuContext context)
 {
     //TODO:
 }
Example #23
0
 protected override bool IsEnabled(BreakpointCtxMenuContext context)
 {
     return(BreakpointsControlCreator.BreakpointsControlInstance.listView.Items.Count > 0);
 }
Example #24
0
 public override bool IsEnabled(BreakpointCtxMenuContext context) => context.SelectedItems.Length > 0;