“等待窗口不等待”在.NET中
Windows 窗体(.NET VS2008)中是否有类似于“wait window nowait”的内容?
这是 Visual FoxPro 中用于调试目的和“快速而肮脏”温度计的常用句子。
Is there something similar to "wait window nowait" in Windows Forms (.NET VS2008) ?
This is a commonly used sentence in Visual FoxPro for debugging purposes and "quick and dirty" thermometers.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不,没有。您可以轻松创建一个 Windows 窗体并将其弹出,或者在您自己的窗体上重新绘制一个部分以轻松复制此功能。
No, there isn't. You could easily create a Windows Form and pop it up, or repaint a section on your own form to duplicate this functionality easily though.
作为替代方案,您可以使用
Debug.WriteLine
< /a> 写出调试信息。调试应用程序时,输出将显示在 Visual Studio 调试器的“输出”选项卡中。As an alternative, you could use
Debug.WriteLine
to write out debug information. The output will show up in the Output tab in the Visual Studio debugger when debugging your application.