在加载新表单时,我很难找到隐藏用户控件标签的解决方案?那么,我如何在表单中隐藏标题控件的标签?并且标题控件作为MDI父级的一部分加载...
答案 0 :(得分:0)
您可以在用户控件的Label.Visible
属性中公开{{1}}属性并使用它,示例:
在用户控制中:
bool
使用用户控件
public bool ShowLabel
{
get { return Label1.Visible; }
set { Label1.Visible = value; }
}