private void KeepDebuggingButtonClick(object sender, System.EventArgs e)
 {
     Result = PromptStopDebuggerResult.KeepDebuggingAndExecuteAction;
     Close();
 }
 private void CancelButtonClick(object sender, System.EventArgs e)
 {
     Result = PromptStopDebuggerResult.Cancel;
     Close();
 }