0
1

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 10.2 Tokyo > TTreeView > マウスオーバーした時のバルーンヘルプのような機能をオフにする

Last updated at Posted at 2019-05-30
動作環境
RAD Studio 10.2 Tokyo Update 3

概要

TTreeView では特定の条件が成立した時にバルーンヘルプのようなものが表示される。

下記の画像で5行目の表示が該当するもの。
2019-05-30_13h06_14.png

ある文字数を超えるとこの機能が発現する。
よくわからないUIだ。

関連コード

下記で動作させている。

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::Button1Click(TObject *Sender)
{
	for(int loop=0; loop<20; loop++) {
		TreeView1->Items->Add(NULL, L"0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789");
	}
}
//---------------------------------------------------------------------------

機能のオフ

  • オブジェクトインスペクタ
    • プロパティの「ToolTips」をfalseにする

機能オフ後

2019-05-30_13h05_46.png

中途半端な表示がされなくなった。

ToolTipsプロパティ

下記はドキュメントが古いが参考にはなるだろう。

検索用キーワード

  • Balloon Help
0
1
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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?