Registriert seit: 29. Dez 2003
Ort: Erding, Republik Bayern
3.323 Beiträge
Delphi XE2 Professional
|
AW: Listbox.OnDrawItem: wenn Dateiendung wechselt, andere Farbe
10. Jun 2010, 18:02
Hallo,
ich möchte mal Odd in den (neu renovierten) Raum werfen und auch folgenden Code:
Delphi-Quellcode:
procedure TForm1.ListBox1DrawItem(Control: TWinControl; Index: Integer;
Rect: TRect; State: TOwnerDrawState);
begin
If Odd(Index) then
ListBox1.Canvas.Brush.color := clGreen
else
ListBox1.Canvas.Brush.color := clWhite;
ListBox1.Canvas.FillRect(Rect);
ListBox1.Canvas.Font.Color := clBlack;
ListBox1.Canvas.TextOut(Rect.Left, Rect.Top, ListBox1.Items[Index]);
end;
Basis ist dieser Link: http://www.swissdelphicenter.ch/de/showcode.php?id=1885
mfg
Helmi
>> Theorie ist Wissen, dass nicht funktioniert - Praxis ist, wenn alles funktioniert und keiner weiss warum! <<
|