button控件
发布网友
发布时间:2022-05-14 02:02
我来回答
共3个回答
热心网友
时间:2023-11-22 14:15
看样子,楼主是刚入门吧!
慢慢来哈!一楼的太不厚道了哈!
把你的代码改下下哈
protected void Button1_Click1(object sender, EventArgs e)
{
if(Button1.Text == "显示";)
{
panel.show();
Button1.Text = "隐藏";
}
else
{
panel1.hide();
Button1.Text = "显示";
}
楼主加油哈!
热心网友
时间:2023-11-22 14:15
if (Panel1.Visible)
{
Panel1.Visible = false;
Button1.Text = "显示";
}
else
{
Panel1.Visible = true;
Button1.Text = "不显示";
}
热心网友
时间:2023-11-22 14:16
很简单,我就是不告诉你