Online
Registriert seit: 20. Jan 2006
Ort: Lübbecke
11.453 Beiträge
Delphi 12 Athens
|
AW: Icon aus ImageList ins StringGrid laden!
21. Dez 2013, 10:59
Delphi-Quellcode:
var
X, Y: Integer;
begin
if (ACol = 6) and (ARow >= StringGrid1.FixedRows) and (StringGrid1.Cells [1, ARow] ='Eingang') then begin
{ eventuell noch zentrieren }
X := Rect.Left;
Y := Rect.Top;
ImageList1.Draw(StringGrid1.Canvas, X, Y, 0, true); { 0 = erstes Image in ImageList }
end;
end;
|