1

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

这就是我的意思:

这就是我想要做的:

在此处输入图像描述

这就是我所在的位置:

在此处输入图像描述

我已经将它用于标签

    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 的颜色

我在网上到处都看过,这些例子要么是 0 有意义,要么是不起作用。

从我看过的例子中我知道这是可能的

任何人都可以帮忙吗?

4

1 回答 1

0

TabControl 具有来自 Control 的属性 BackColor。也许如果没有任何效果,请尝试将 DefaultBackColor 设置为 TabControl 所需的颜色?看看这个:http: //msdn.microsoft.com/en-us/library/system.windows.forms.control.defaultbackcolor.aspx

于 2012-06-04T08:51:13.787 回答