Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 FireMonkey 的 TStringGrid 中创建一个显示行号的列?
如果是使用 LiveBinding,我不知道怎么做。
您的表单/网格 OnGetValue 事件处理程序将该行作为其参数之一传递。只需验证该列是您想要的列并返回行号。
function Form1.Grid1GetValue(const Row, Col: Integer): TValue; begin if Col = 0 then Result := TValue.From<Integer>(Row); end;