英文:
I'm stuck with the code hidden behind an unmovable form when I debugging point reach to breakpoint in C#
问题
我正在使用Windows Forms .NET Framework。在调试Winforms应用程序时,当断点被触发时,我无法最小化窗体或将其移开以查看代码。结果是,我无法移动的窗体遮住了代码。如何解决这个问题!!!提前感谢!!!
我不知道这是如何发生的或者是否更改了窗体的属性。
当断点被触发时,窗体的图像仍然保持最大化状态。
参考图像:
英文:
i am using windows forms .net framework When debugging a Winforms app I can no longer either minimize or move the form out of the way to view the code when a breakpoint is reached. The result is that I'm stuck with the code hidden behind an unmovable form. how do i resolve this !!! thanks in advance!!!
i dont know how this is happened or changed something in the forms properties.
the image of form when is hit the breakpoint still form remains maximized
reference image
答案1
得分: 1
Assuming you do not have a multi-monitor system otherwise you could start the app in a different monitor.
Have you tried ALT-ESC to switch to the VS Window with your code?
英文:
Assuming you do not have a multi monitor system otherwise you could start the app in a different monitor.
Have you tried ALT-ESC to switch to the VS Window with your code?
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论