Registriert seit: 30. Nov 2005
Ort: München
5.768 Beiträge
Delphi 10.4 Sydney
|
Re: Bestimmte Zeilen einer TListbox färben
14. Jun 2007, 12:31
Versuche es einmal so:
Delphi-Quellcode:
procedure TForm1.ListBox1DrawItem(Control: TWinControl; Index: Integer;
Rect: TRect; State: TOwnerDrawState);
var
Name: string;
Farbe,count, i : integer;
begin
count := listbox1.Items.Count;
label1.Caption := inttostr(count);
Farbe := clRed;
if listbox1.Items.Strings[index] = 'verliehen' then //<-- index eingebaut
ZeileFaerben(Index,Farbe,Listbox1,Index,Rect) ;
//canvas.Font.Color := clRed;
// for i := 0 to count do
//if
//listbox1.Items.Text = 'verliehen' then
end;
Grüße
Klaus
Klaus
|
|
Zitat
|