c# winfrom 按钮的隐藏与禁用

//隐藏按钮

button1.Visible = false;

//禁用按钮

button1.Enabled = false;

你可能感兴趣的:(c#)