C#怎么修改tabcontrol控件的最顶上那个页头的颜色比如选中的那一页成红色
集成 TabControl 后,你可以随意的绘制您需要的样式。
代码如下:
public partial class UserTab : System.Windows.Forms.TabControl
{
public UserTab()
{
InitializeComponent();
this.SetStyle(ControlStyles.UserPaint, true);
this.SetStyle(ControlStyles.AllPaintingInWmPaint, true);
this.SetStyle(ControlStyles.DoubleBuffer, true);
this.SetStyle(ControlStyles.ResizeRedraw, true);
this.SetStyle(ControlStyles.SupportsTransparentBackColor, true);
}
protected override void OnPaint(PaintEventArgs e)
{
base.OnPaint(e);
Rectangle TabControlArea = this.ClientRectangle;
Rectangle TabArea = this.DisplayRectangle;
Graphics gs = e.Graphics;
gs.FillRectangle(Brushes.White, 0, 0, this.Width, this.Height);
gs.DrawLine(new Pen(Color.FromArgb(255, 155, 194, 224), 2), 0, 0, 0, this.Height);
gs.DrawLine(new Pen(Color.FromArgb(255, 155, 194, 224), 2), 0, this.Height, this.Width, this.Height);
gs.DrawLine(new Pen(Color.FromArgb(255, 155, 194, 224), 2), this.Width, 0, this.Width, this.Height);
TextureBrush tTabBg = new TextureBrush(RES.Skin.TabTitle);
gs.FillRectangle(tTabBg, 0, 0, this.Width, RES.Skin.TabTitle.Height);
tTabBg.Dispose();
for (int i = 0; i < this.TabPages.Count; i++)
{
bool bSelected = (this.SelectedIndex == i);
Rectangle recBounds = this.GetTabRect(i);
RectangleF tabTextArea = (RectangleF)this.GetTabRect(i);
StringFormat stringFormat = new StringFormat();
stringFormat.Alignment = StringAlignment.Center;
stringFormat.LineAlignment = StringAlignment.Far;
if (bSelected)
{
TextureBrush tTabSelected = new TextureBrush(RES.Skin.TabSelected);
tTabSelected.TranslateTransform(recBounds.Left, recBounds.Top);
gs.FillRectangle(tTabSelected, recBounds.Left, recBounds.Top, recBounds.Width, recBounds.Height);
tTabSelected.Dispose();
gs.DrawImage(RES.Skin.TabSelected_Left, recBounds.Left - 1, 2);
gs.DrawImage(RES.Skin.TabSelected_Right, recBounds.Left + recBounds.Width - 5, 2);
System.Drawing.Font font = new Font(this.Font.FontFamily, 10, FontStyle.Bold);
Brush br = new SolidBrush(Color.FromArgb(255, 68, 123, 164));
gs.DrawString(this.TabPages[i].Text, font, br, tabTextArea, stringFormat);
}
else
{
System.Drawing.Font font = new Font(this.Font.FontFamily, 10);
Brush br = new SolidBrush(Color.FromArgb(190, 255, 255, 255));
gs.DrawString(this.TabPages[i].Text, font, br, tabTextArea, stringFormat);
}
}
}
}
以下为绘制后的效果,中间的 ListView 是后来添加的控件,主要说的是标题栏部分。
代码中使用了部分图片,您可以从代码中很容易的看到图片是如何绘制到标题栏上的。
先谢谢你前辈!就是有没有直接能在控件属性中更改的方法。
这个没有的,必须要自己重绘。
如果你对外观要求比较高的话,您可以使用 WPF 来开发~