TabControl的背景颜色?

时间:2012-06-04 08:41:32

标签: tabcontrol geckofx

我正在使用在Geckofx上运行的浏览器,而且我找不到改变TabControl颜色的方法 我不想更改标签页,我想更改容器。

这就是我的意思:

这就是我想要做的事情:

enter image description here

这就是我所在的地方:

enter image description here

我已经将这个用于标签

    private void tabControl_DrawItem(object sender, System.Windows.Forms.DrawItemEventArgs e)
    {
        {
            TabPage CurrentTab = tabControl.TabPages[e.Index];
            Rectangle ItemRect = tabControl.GetTabRect(e.Index);
            SolidBrush FillBrush = new SolidBrush(Color.Red);
            SolidBrush FBG = new SolidBrush(Color.Black);
            SolidBrush TextBrush = new SolidBrush(Color.Green);
            StringFormat sf = new StringFormat();
            sf.Alignment = StringAlignment.Center;
            sf.LineAlignment = StringAlignment.Center;
            if (System.Convert.ToBoolean(e.State & DrawItemState.Selected))
            {
                FillBrush.Color = Color.Black;
                TextBrush.Color = Color.Green;
                ItemRect.Inflate(0, 0);
            }

            if (tabControl.Alignment == TabAlignment.Left || tabControl.Alignment == TabAlignment.Right)
            {
                float RotateAngle = 90;
                if (tabControl.Alignment == TabAlignment.Left)
                    RotateAngle = 270;
                PointF cp = new PointF(ItemRect.Left + (ItemRect.Width / 3), ItemRect.Top + (ItemRect.Height / 5));
                e.Graphics.TranslateTransform(cp.X, cp.Y);
                e.Graphics.RotateTransform(RotateAngle);
                ItemRect = new Rectangle(-(ItemRect.Height / 3), -(ItemRect.Width / 3), ItemRect.Height, ItemRect.Width);
            }
            e.Graphics.FillRectangle(FillBrush, ItemRect);
            e.Graphics.DrawString(CurrentTab.Text, e.Font, TextBrush, (RectangleF)ItemRect, sf);
            e.Graphics.ResetTransform();
            FillBrush.Dispose();
            TextBrush.Dispose();
        }
    }

我根本不知道如何更改TabControl的颜色

我到处都在网上看过,这些例子无论是有意义还是无效。

我知道这可能来自我见过的例子

有人可以帮忙吗?

1 个答案:

答案 0 :(得分:0)

Tab Control具有Control的属性BackColor。也许如果什么都不起作用,尝试将Default BackColor设置为TabControl所需的颜色? 看看这个:http://msdn.microsoft.com/en-us/library/system.windows.forms.control.defaultbackcolor.aspx