如何更改选项卡控件背景颜色(VB.NET)

时间:2011-12-07 09:13:34

标签: vb.net

如何将灰色部分更改为白色? 我希望我的tabcontrol充满全白色。

enter image description here

到目前为止,我所做的是这样的:

Private Sub TabControl1_DrawItem(ByVal sender As Object, ByVal e As System.Windows.Forms.DrawItemEventArgs) Handles TabControl1.DrawItem
    Dim g As Graphics = e.Graphics
    Dim tp As TabPage = TabControl1.TabPages(e.Index)
    Dim br As Brush
    Dim sf As New StringFormat

    Dim r As New RectangleF(e.Bounds.X, e.Bounds.Y + 2, e.Bounds.Width, e.Bounds.Height - 2)

    sf.Alignment = StringAlignment.Center

    Dim strTitle As String = tp.Text

    'If the current index is the Selected Index, change the color 
    If TabControl1.SelectedIndex = e.Index Then

        'this is the background color of the tabpage header
        br = New SolidBrush(Color.White) ' chnge to your choice
        g.FillRectangle(br, e.Bounds)

        'this is the foreground color of the text in the tab header
        br = New SolidBrush(Color.Black) ' change to your choice
        g.DrawString(strTitle, TabControl1.Font, br, r, sf)

    Else

        'these are the colors for the unselected tab pages 
        br = New SolidBrush(Color.White) ' Change this to your preference
        g.FillRectangle(br, e.Bounds)
        br = New SolidBrush(Color.Black)
        g.DrawString(strTitle, TabControl1.Font, br, r, sf)

    End If
End Sub

我还把它放在PageLoad函数中:

TabControl1.DrawMode = TabDrawMode.OwnerDrawFixed
For Each tg As TabPage In TabControl1.TabPages
    tg.BackColor = Color.White
Next

3 个答案:

答案 0 :(得分:1)

没有财产可以做到这一点。但是可以使用类似的东西

http://dotnetrix.co.uk/tabcontrol.htm

本网站上的所有控件均可在MIT许可下免费获取。

答案 1 :(得分:0)

如果有人找到解决方案,请花时间研究;可能会有一些工作。但根据MSDN Ref

TabControl.BackColor属性

  

NET Framework(当前版本)此API支持该产品   基础架构,不能直接在您的代码中使用。

     

此成员对此控件没有意义。

     

命名空间:System.Windows.Forms程序集:System.Windows.Forms(in   System.Windows.Forms.dll中)

据我了解,这可以根据用户的窗口设置进行调整。 (Highlight ColorTabControl,表格和其他控件;否则MS可以简单地打开这个属性。

答案 2 :(得分:0)

我想办法解决这个问题,我在灰色部分上贴上了白色标签,结果如下:

enter image description here