禁止TreeView的ToolTip

  • 主题发起人 主题发起人 import
  • 开始时间 开始时间
I

import

Unregistered / Unconfirmed
GUEST, unregistred user!
procedure TForm1.FormShow(Sender: TObject);
const
TVS_NOTOOLTIPS = $0080;
begin
SetWindowLong(Treeview1.Handle, GWL_STYLE,
GetWindowLong(TreeView1.Handle, GWL_STYLE) xor TVS_NOTOOLTIPS);
end;
 

Similar threads

I
回复
0
查看
518
import
I
I
回复
0
查看
749
import
I
I
回复
0
查看
698
import
I
I
回复
0
查看
537
import
I
后退
顶部