Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我创建了一个 Windows 窗体-主框架,有一个面板,我在其中创建了一个组框作为登录表单。我需要保持主框架中的按钮无效,直到单击组框中的确定按钮。请帮忙。这是我的第一个 C# 项目。
将按钮Enabled属性设置false为设计器中的默认值。然后在按钮单击中,将它们的Enabled属性设置为true。
Enabled
false
true
button1.Enabled = true; button2.Enabled = true;
您要启用的按钮的名称在哪里button1以及是什么。button2
button1
button2
如果您的登录必须在应用程序中的任何其他操作之前发生,我建议您创建另一个登录表单,在您的主表单之前启动,登录成功决定程序是退出还是打开主表单。
编辑:很像@Kyle 的第一条评论