#region 关闭标题
public void stopTitle()
{
this.CaptionBackColorBottom = this.BackColor;
this.CaptionBackColorTop = this.BackColor;
this.EffectCaption = TitleType.None;
this.ControlBox = false;
this.ShowDrawIcon = false;
}
#endregion
#region 打开标题
public void startTitle()
{
this.CaptionBackColorBottom = Color.FromArgb(214, 219, 233);
this.CaptionBackColorTop = Color.FromArgb(214, 219, 233);
this.EffectCaption = TitleType.Title;
this.ControlBox = true;
this.ShowDrawIcon = true;
}
#endregion |