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