![]() |
Scrollbar in einem TTreeview verhinden
Wie kann ich die horizontale Scrollbar in einem TTreeview verhindern?
|
AW: Scrollbar in einem TTreeview verhinden
Ich habe diese Lösung versucht:
Delphi-Quellcode:
jedoch wird der Scrollbalken angezeigt wenn das Treeview anfang leer war und erst später mit Einträgen gefüllt wird.
procedure TTestTreeview.CreateParams(var Params: TCreateParams);
begin inherited CreateParams(Params); if (Params.Style and WS_VSCROLL) <> 0 then Params.Style := Params.Style and not WS_VSCROLL; if (Params.Style and WS_HSCROLL) <> 0 then Params.Style := Params.Style and not WS_HSCROLL; end; Ein zweiter Versuch war
Delphi-Quellcode:
in Form.OnPaint. Leider auch kein Erfolg. Ein manueller (ButtonClick) Aufruf von ShowScrollBar() klappt jedoch.
ShowScrollBar(ActiveTree.Handle, SB_HORZ, False);
|
AW: Scrollbar in einem TTreeview verhinden
BTW. Was ist den so schwer daran, Code-Tags im speziellen die Delphi-Tags für Quellcode ( hier Delphi) zu verwenden?
|
AW: Scrollbar in einem TTreeview verhinden
Habe eine Lösung gefunden:
Delphi-Quellcode:
procedure TTestTreeview.WMNCCalcSize(var msg: TMessage);
var style: Integer; begin style := GetWindowLong( handle, GWL_STYLE ); if (style and WS_VSCROLL) <> 0 then SetWindowLong( handle, GWL_STYLE, style and not WS_VSCROLL ); if (style and WS_HSCROLL) <> 0 then SetWindowLong( handle, GWL_STYLE, style and not WS_HSCROLL ); inherited; end; |
Alle Zeitangaben in WEZ +1. Es ist jetzt 18:31 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz