简体   繁体   English

VB.Net一个按钮显示隐藏的按钮

[英]VB.Net One button to show hidden buttons

I'm a complete noob at this, but does anyone know a simple code that will get hidden buttons to show apon clicking another button? 我是一个完全菜鸟,但是没有人知道一个简单的代码,该代码将隐藏按钮以显示单击另一个按钮吗?

Thanks!! 谢谢!!

In the click event of the button that you want to unhide the other buttons just put 在您要取消隐藏按钮的单击事件中,其他按钮仅放在

Button1.Visible = True
Button2.Visible = True

Etc. 等等。

Replace Button1 with the actual button name. 用实际的按钮名称替换Button1。

That's it 而已

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

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