VS 2008 C# 将焦点仅设置为一种形式
当我的表单(AboutForm)显示时,我需要将焦点保持在该表单上(用户应该只能单击“确定”按钮)!
VS2008中需要进行哪些设置?
谢谢!
问候莱昂22
When my form (AboutForm) is shown I need to hold the focus on this form (the user should only be able to click the OK button) !
Which setting is neccessary in VS2008?
Thanks!
greets leon22
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您希望以模式方式显示它,因此请使用
ShowDialog()
而不是Show()
。仅此而已。例如:
重要的是:使用
ShowDialog
时,关闭表单不会Dispose()
它,因此using
;参见MSDN:You want to show it modally, so use
ShowDialog()
rather thanShow()
. That is all.For example:
important: when using
ShowDialog
, closing the form does notDispose()
it, hence theusing
; see MSDN: