C#怎么修改tabcontrol控件的最顶上那个页头的颜色比如选中的那一页成红色

 我来答
OAngs
推荐于2016-10-15 · TA获得超过678个赞
知道小有建树答主
回答量:554
采纳率:66%
帮助的人:359万
展开全部

集成 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 来开发~
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式