C# Label中的Visible怎么用?

给出一个实例,演示一下。
2024-12-18 00:31:48
推荐回答(5个)
回答1:

asp.net中:
lable的Visible="true"的话,在客户端Lable将被解释为span标签
lable的Visible="false"的话,服务器将你忽略lable的存在,不会解释为任何对应的客户端标签。

至于如何用,就当属性用就可以了
代码Lable1.Visible=true,或者在标签里面设置属性也行

回答2:

lable.Visible=false; //表示不可见
lable.Visible=true; //表示显示
默认状态下是显示的

回答3:

假设你网页中有一个Label(id是l),你想让它不可见,你可以用下面的代码:
l.Visible=false;

回答4:

就是不可以用的意思嘛
this.Labe1.Visible=fale; 就OK 了·

回答5:

if(1)
{
Label1.visible = True;
}
else
{
Lbel1.visible = False;
}