C++ Builder 10.2 Tokyo > PageControl > タブの色の変更 > 2004年の情報:できない | 別の方法:違和感
6256 ワード
動作環境
RAD Studio 10.2 Tokyo Update 3
Windows 10 Pro (64bit) バージョン 1803 (April 2018 Update)
希望動作
- PageControl内のタブの色を変更する
情報1. Delphi実装例 (2004年)
- ページコントロールのタブの色の変更 @ Delphi Q & A 掲示板
上記を元に以下を実装してみた。
Unit1.cpp
//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
#include "Unit1.h"
//---------------------------------------------------------------------------
#pragma package(smart_init)
#pragma resource "*.dfm"
TForm1 *Form1;
//---------------------------------------------------------------------------
__fastcall TForm1::TForm1(TComponent* Owner)
: TForm(Owner)
{
}
//---------------------------------------------------------------------------
void __fastcall TForm1::PageControl1DrawTab(TCustomTabControl *Control, int TabIndex,
const TRect &Rect, bool Active)
{
switch(TabIndex) {
case 0:
Brush->Color = clAqua;
break;
case 1:
Brush->Color = clLime;
break;
default:
Brush->Color = clGray;
break;
}
if (Active) {
Brush->Color = clYellow;
}
Control->Canvas->FillRect(Rect);
Control->Canvas->TextOutW(Rect.Left+4, Rect.Top+4, PageControl1->Pages[TabIndex]->Caption);
}
//---------------------------------------------------------------------------
タブの色の変更はできない。
情報2. STACK OVERFLOW (2011年)
How can I change the background color of my TTabSheets?
- A. styleプロパティを「tsFlatButtons」にする by Johan
- B. themes.pasを参考にしてFormの色を変える by Peter Turner
- ThemsesEnabled時はclBtnHighlightにする
下図は方法A(tsFlatButtonsにした場合)の結果。
下図は方法B(clBtnHighlightにした場合)の結果。
A,Bどちらの対応にも違和感を感じる。
Author And Source
この問題について(C++ Builder 10.2 Tokyo > PageControl > タブの色の変更 > 2004年の情報:できない | 別の方法:違和感), 我々は、より多くの情報をここで見つけました https://qiita.com/7of9/items/11945a5320675fbf2d7d著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .