![]() |
Muster für ListBox balken
Hallo,
ich wüerde gerne den makierungs balken genau in der selben farbe haben wie die listbox und ein balken rand. ich habe hier im forum gesucht und auch was gefunden nur wird leider kein rand-muster gezeichnet:
Delphi-Quellcode:
jeder eintrag kann in eine andre farbe gezeichent werden, das geht auch schon, nur bei den if odFocused da gehts irgenwie leider nicht mehr so richtig. Die hintergrund farbe ist:
procedure TForm1.ListBox1DrawItem(Control: TWinControl; Index: Integer;
Rect: TRect; State: TOwnerDrawState); var str:String; begin str:=''; with ListBox1.Canvas do begin if odSelected in State then begin Brush.Color:=$00A80000; font.Color:=clYellow; end; FillRect(Rect); Font.Size := 8; // use font's preferred size Font.Name:='MS Sans Serif'; if Pos('$',Playliste[index+1]) >= 0 then begin if JvCheckbox1.Checked = True then begin if NumToken(Playliste[index+1],'$') > 6 then begin str:='*'; Font.Color:=StringToColor(GetToken(Playliste[index+1],'$',6)); end; end else if NumToken(Playliste[index+1],'$') > 2 then begin Font.Color:=StringToColor(GetToken(Playliste[index+1],'$',2)); str:=''; end; end; TextOut(Rect.Left+1, Rect.Top+1, ListBox1.Items[Index]+str); if (odFocused in state) then begin Brush.Style:=bsDiagCross; Pen.Style:=psDot; DrawFocusRect(rect); end; end; end; $00A80000 eine art dunkles Blau. |
Alle Zeitangaben in WEZ +1. Es ist jetzt 17:04 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