“不调试开始”快捷方式在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;
}
。
在任务栏中单击无需调试即可启动的选项时,程序将按预期成功运行。但是,当我尝试使用Ctrl+R
运行程序时,没有任何反应。
我在这里想念什么?
我正在使用用于Windows桌面的Visual Studio Express 2012 。
答案 0 :(得分:0)
看起来像ctrl+r
是和弦的第一部分。您可以将快捷方式设置为ctrl+r, ctrl+r
。参见图片中的箭头。