C++ Builder 10.2 Tokyo > TTreeView > マウスオーバーした時のバルーンヘルプのような機能をオフにする
4079 ワード
動作環境
RAD Studio 10.2 Tokyo Update 3
概要
TTreeView では特定の条件が成立した時にバルーンヘルプのようなものが表示される。
ある文字数を超えるとこの機能が発現する。
よくわからない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にする
機能オフ後
中途半端な表示がされなくなった。
ToolTipsプロパティ
下記はドキュメントが古いが参考にはなるだろう。
検索用キーワード
- Balloon Help
Author And Source
この問題について(C++ Builder 10.2 Tokyo > TTreeView > マウスオーバーした時のバルーンヘルプのような機能をオフにする), 我々は、より多くの情報をここで見つけました https://qiita.com/7of9/items/ea81f3fe98c27eacc230著者帰属:元の著者の情報は、元の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 .