简体   繁体   English

如何在运行时将 windows 表单的 AcceptButton 设置为 None

[英]How to set a windows form's AcceptButton to None at run time

To set a form's AcceptButton at runtime, I'm doing this:要在运行时设置表单的 AcceptButton,我这样做:

this.AcceptButton = this.btnButtonName;

But can anyone tell me how to clear the form's AcceptButton, something like:但是谁能告诉我如何清除表单的 AcceptButton,例如:

this.AcceptButton = None; 

Thanks.谢谢。

Try this:尝试这个:

this.AcceptButton = null;

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM