如何在运行时将 Windows 窗体的 AcceptButton 设置为 None
要在运行时设置表单的 AcceptButton,我正在这样做:
this.AcceptButton = this.btnButtonName;
但是任何人都可以告诉我如何清除表单的 AcceptButton,例如:
this.AcceptButton = None;
谢谢。
To set a form's AcceptButton at runtime, I'm doing this:
this.AcceptButton = this.btnButtonName;
But can anyone tell me how to clear the form's AcceptButton, something like:
this.AcceptButton = None;
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试这个:
Try this: