Registriert seit: 27. Sep 2005
Ort: Frankfurt
62 Beiträge
Delphi 6 Personal
|
ListView OnCustomDrawSubItem
12. Jan 2011, 21:04
hello again,
ich habe eine listview mit einträgen, in der ich prüfen möchte, ob in der 8. spalte text vorhanden ist, und wenn dem so sein sollte, wird diese rot gefärbt... dazu bin ich beim oncustomdrawsubitem ereignis wie folgt vorgegangen:
Delphi-Quellcode:
procedure TForm1.ListView1CustomDrawSubItem(Sender: TCustomListView;
Item: TListItem; SubItem: Integer; State: TCustomDrawState;
var DefaultDraw: Boolean);
var i:integer;
begin
ListView1.DoubleBuffered:=true;
with Sender.Canvas do
begin
Font.Style:=Font.Style-[fsBold];
Brush.Color:=clWindow;
Font.Color:=clBlack;
for i:=0 to form1.ListView1.Items.Count -1 do
begin
if (form1.CheckBox1.Checked=true)
then begin
if (ListView1.Items.Item[i].SubItems[7] <> ' ')
then begin
case SubItem of
1: Brush.Color:= RGB(88,188,88);
2: if (item. Index mod 2 = 1) then brush.Color:= RGB(222,222,222) else brush.Color:= RGB(255,255,255);
3: if (item. Index mod 2 = 1) then brush.Color:= RGB(222,222,222) else brush.Color:= RGB(255,255,255);
4: if (item. Index mod 2 = 1) then brush.Color:= RGB(222,222,222) else brush.Color:= RGB(255,255,255);
5: if (item. Index mod 2 = 1) then brush.Color:= RGB(222,222,222) else brush.Color:= RGB(255,255,255);
6: if (item. Index mod 2 = 1) then brush.Color:= RGB(222,222,222) else brush.Color:= RGB(255,255,255);
7: if (item. Index mod 2 = 1) then brush.Color:= RGB(222,222,222) else brush.Color:= RGB(255,255,255);
8: Brush.Color:= RGB(200,20,20);
end;
end
else begin
case SubItem of
1: Brush.Color:= RGB(88,188,88);
2: if (item. Index mod 2 = 1) then brush.Color:= RGB(222,222,222) else brush.Color:= RGB(255,255,255);
3: if (item. Index mod 2 = 1) then brush.Color:= RGB(222,222,222) else brush.Color:= RGB(255,255,255);
4: if (item. Index mod 2 = 1) then brush.Color:= RGB(222,222,222) else brush.Color:= RGB(255,255,255);
5: if (item. Index mod 2 = 1) then brush.Color:= RGB(222,222,222) else brush.Color:= RGB(255,255,255);
6: if (item. Index mod 2 = 1) then brush.Color:= RGB(222,222,222) else brush.Color:= RGB(255,255,255);
7: if (item. Index mod 2 = 1) then brush.Color:= RGB(222,222,222) else brush.Color:= RGB(255,255,255);
8: if (item. Index mod 2 = 1) then brush.Color:= RGB(222,222,222) else brush.Color:= RGB(255,255,255);
end;
end;
end;
end;
end;
end;
die procedure wird ausgeführt, sobald dem listview ein eintrag hinzugefügt/entnommen wird und ich rufe sie manuell über den statuswechsel von der checkbox auf (onclick)! jetzt würde ich erwarten, dass gemäß meiner schleife die gesamte listview durchgegangen wird und für jeden einzelnen eintrag der 7.subitem, sprich die 8. spalte geprüft wird. jedes mal wenn dieses feld leer sein sollte, wird rot gefärbt, ansonsten eben nicht! mein problem ist aber, dass einfach die gesamte 8. spalte rot gefärbt wird... völlig ohne rücksicht auf den jeweiligen eintrag! woran liegt das?
thx
|