.Net(VB、C#)でタブコントロールの選択中タブの色を変更する
.Net(VB、C#)でタブコントロールの選択中タブの色を変更する方法。
タブコントロールのタブをオーナードローする(自分で描画する)。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | Public Class Form1 ''' <summary> ''' フォームロード ''' </summary> ''' <param name="sender"></param> ''' <param name="e"></param> ''' <remarks></remarks> Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load 'タブコントロールの描画モードをオーナードローに変更 TabControl1.DrawMode = TabDrawMode.OwnerDrawFixed End Sub ''' <summary> ''' タブ描画時 ''' </summary> ''' <param name="sender"></param> ''' <param name="e"></param> ''' <remarks></remarks> Private Sub TabControl1_DrawItem(ByVal sender As System.Object, ByVal e As System.Windows.Forms.DrawItemEventArgs) Handles TabControl1.DrawItem '変数定義 Dim backBrush As SolidBrush Dim foreBrush As SolidBrush '選択中のタブを判定 If TabControl1.SelectedIndex = e.Index Then backBrush = New SolidBrush(Color.Navy) foreBrush = New SolidBrush(Color.White) Else backBrush = New SolidBrush(SystemColors.Control) foreBrush = New SolidBrush(Color.Black) End If '背景色塗潰し e.Graphics.FillRectangle(backBrush, e.Bounds) '表示文字列描画 Dim format As StringFormat = New StringFormat() Dim rect As RectangleF = New RectangleF(e.Bounds.X, e.Bounds.Y + 6, e.Bounds.Width, e.Bounds.Height) format.Alignment = StringAlignment.Center e.Graphics.DrawString(TabControl1.TabPages(e.Index).Text, TabControl1.Font, foreBrush, rect, format) End Sub End Class |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 | using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace CSTest003 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } /// <summary> /// フォームロード /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void Form1_Load(object sender, EventArgs e) { //タブコントロールの描画モードをオーナードローに変更 tabControl1.DrawMode = TabDrawMode.OwnerDrawFixed; } /// <summary> /// タブ描画時 /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void tabControl1_DrawItem(object sender, DrawItemEventArgs e) { //変数定義 SolidBrush backBrush; SolidBrush foreBrush; //選択中のタブを判定 if (tabControl1.SelectedIndex == e.Index) { backBrush = new SolidBrush(Color.Navy); foreBrush = new SolidBrush(Color.White); } else { backBrush = new SolidBrush(SystemColors.Control); foreBrush = new SolidBrush(Color.Black); } //背景色塗潰し e.Graphics.FillRectangle(backBrush, e.Bounds); //表示文字列描画 StringFormat format = new StringFormat(); RectangleF rect = new RectangleF(e.Bounds.X, e.Bounds.Y + 6, e.Bounds.Width, e.Bounds.Height); format.Alignment = StringAlignment.Center; e.Graphics.DrawString(tabControl1.TabPages[e.Index].Text, tabControl1.Font, foreBrush, rect, format); } } } |