Delphi Firemonkey TGrid如何更新

发布于 2024-12-10 21:49:18 字数 196 浏览 1 评论 0原文

我有一个混合了列(ImageColumn 和 StringColumn)的 TGrid。我可以使用 onGetValue 事件填充它,效果很好。我的问题是:

  1. 如何强制整个网格重建并引发 onGetValue 事件? 我现在正在使用UpdateStyle。

  2. 如何更新网格中的单个单元格?

I have a TGrid with a mixture of columns (ImageColumn and StringColumn). I can populate it using onGetValue event which works fine. My questions are:

  1. How to force the entire grid to rebuild and cause onGetValue event?
    I'm using UpdateStyle at the monent.

  2. How can I update a single cell in the grid?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

赴月观长安 2024-12-17 21:49:18

网格仅更新可见单元格! Grid1.UpdateStyle 强制网格重建并导致 onGetValue 事件,但速度很慢。 Grid1.ReAlign 速度要快得多。

一旦单元格变得可见,它们就会被更新。

更新 1 个单元格:

procedure TForm1.UpdateCell(col, row: integer);
var
  cell: TStyledControl;
begin
  cell := Grid1.Columns[col].CellControlByRow(row);
  if Assigned(cell) then
    cell.Data := 'Note: use the same datasource as OnGetValue';
end;

当行永远不可见时,不会分配单元格。

The grid updates only visible cells! Grid1.UpdateStyle force the grid to rebuild and is causing onGetValue events but its slow. Grid1.ReAlign is much faster.

As soon as cells become visible, they will be updated.

Updating 1 cell:

procedure TForm1.UpdateCell(col, row: integer);
var
  cell: TStyledControl;
begin
  cell := Grid1.Columns[col].CellControlByRow(row);
  if Assigned(cell) then
    cell.Data := 'Note: use the same datasource as OnGetValue';
end;

cell is not assigned when row never become visible.

温折酒 2024-12-17 21:49:18

另一种选择是调用 Grid1.beginUpdate; 进行更改,然后调用 Grid1.endupdate; 这将导致可见网格重新计算和重绘。

The other option is to call Grid1.beginUpdate; make your changes and then call Grid1.endupdate; which will cause the visible grid to recalculate and redraw.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文