Ejemplo n.º 1
0
 void toggleDebugger(object sender, EventArgs e)
 {
     if (DebugPanel.ActualHeight > 1)
     {
         HideDebuggerUI.Begin();
         ((ApplicationBarMenuItem)ApplicationBar.MenuItems[0]).Text = "open debugger";
     }
     else
     {
         ShowDebuggerUI.Begin();
         ((ApplicationBarMenuItem)ApplicationBar.MenuItems[0]).Text = "close debugger";
     }
 }
Ejemplo n.º 2
0
 private void startDebugger(object sender, System.Windows.Input.ManipulationStartedEventArgs e)
 {
     ShowDebuggerUI.Begin();
 }
Ejemplo n.º 3
0
 private void ShowDebugger(object sender, System.Windows.RoutedEventArgs e)
 {
     ShowDebuggerUI.Begin();
 }