Ja danke, so habe ich es inzwischen gelöst.
Delphi-Quellcode:
procedure TFormPersonsGrid.TMSFMXGridPersonsGetCellLayout(Sender: TObject; ACol, ARow: Integer; ALayout: TTMSFMXGridCellLayout; ACellState: TCellState);
begin
if (ARow > 0) and (not Odd(ARow)) then
begin
if ACellState = csFocused then
begin
ALayout.Fill.Color := ShadowFocusedCellColor; // custom Color
ALayout.FontFill.Color := ShadowFocusedTextColor; // custom Color
end
else
ALayout.Fill.Color := ShadowCellColor; // custom Color
end;
end;
Das Video würde ich dennoch gern noch einmal sehen.