private bool IsVisibel = true;
[Category("行为"), Description("是否显示按钮栏")]
public bool VisibleButton
{
get
{
return IsVisibel;
}
set
{
IsVisibel = value;
this.panel1.Visible = IsVisibel;
base.Refresh();
}
}