0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

c++ builder XE4, 10.2 Tokyo > TPageControl > 特定のTabSheetを非表示にする

Last updated at Posted at 2016-11-14
動作確認
C++ Builder XE4
RAD Studio 10.2 Tokyo Update 2 (追記: 2017/12/28)

TPageControlにて実装途中の機能がある場合、特定のTabSheetを非表示にしておきたい場合がある。

コードでの非表示

参考 Delphi:TPageControl でタブ部分を非表示にする方法 @ ゆめとちぼーとげんじつと

情報感謝です。

C++ Builderの場合、以下のコードで非表示にできました。

Unit1.cpp
void __fastcall TForm1::FormShow(TObject *Sender)
{
	for (int idx=2; idx < PageControl1->PageCount; idx++) {
		PageControl1->Pages[idx]->TabVisible = false;
	}
}

FormShow時の処理が適切かどうかは要検討。

デザイン時

qiita.png

実行時

qiita.png

デザインでの非表示

TabSheet3などを選択してプロパティ「TabVisible」をfalseにすることでそのTabSheetを非表示にできる。

こちらでの設定時の欠点は、フォームのデザインにfalseにしたTabSheetが表示されなくなること (下図)。

qiita.png

オブジェクトインスペクタでのリストには残っている(下図)。

qiita.png

フォームのデザインを見て、非表示になっているTabSheetに気づくには、オブジェクトインスペクタのリストをくまなく読まないといけなくなる。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?