在没有调试的情况下启动而不调试快捷方式在Visual Studio中不起作用

时间:2018-09-07 07:01:26

标签: visual-studio visual-studio-2012 shortcut visual-studio-express

“不调试开始”快捷方式在Visual Studio中不起作用。我该怎么办?

我将其快捷方式设置为public void ShowProgressBar(string title, string message, int max, int time) //time means the number of you call this method .from 1-18 { UIViewController controller = UIApplication.SharedApplication.KeyWindow.RootViewController; hud = new MTMBProgressHUD(controller.View); controller.View.AddSubview(hud); hud.Color = UIColor.Clear.FromHex(0x8BC34A); hud.Mode = MBProgressHUDMode.DeterminateHorizontalBar; float progress = time / 18.0f; hud.Progress = progress; } enter image description here enter image description here

在任务栏中单击无需调试即可启动的选项时,程序将按预期成功运行。但是,当我尝试使用Ctrl+R运行程序时,没有任何反应。

我在这里想念什么?

我正在使用用于Windows桌面的Visual Studio Express 2012

1 个答案:

答案 0 :(得分:0)

看起来像ctrl+r是和弦的第一部分。您可以将快捷方式设置为ctrl+r, ctrl+r。参见图片中的箭头。

waiting for keystroke