gpt4 book ai didi

image - 在 stringgrid 单元格中插入图像

转载 作者:行者123 更新时间:2023-12-03 15:45:25 30 4
gpt4 key购买 nike

我在我的应用程序中使用stringgrid。数据从数据库(后端mysql)获取并显示在stringgrid中。

enter image description here

我想在每行的状态单元格中插入图像。即

      if status =online then -->image1
else --->image2

有人知道如何做到这一点吗?

最佳答案

您必须实现 OnDrawCell 事件。

示例:

procedure TForm1.StringGrid1DrawCell(Sender: TObject; ACol, ARow: Longint;
Rect: TRect; State: TGridDrawState);
var
s: string;
aCanvas: TCanvas;
begin
if (ACol <> 1) or (ARow = 0) then
Exit;
s := (Sender as TStringGrid).Cells[ACol, ARow];

// Draw ImageX.Picture.Bitmap in all Rows in Col 1
aCanvas := (Sender as TStringGrid).Canvas; // To avoid with statement
// Clear current cell rect
aCanvas.FillRect(Rect);
// Draw the image in the cell
if (s = 'online') then
aCanvas.Draw(Rect.Left, Rect.Top, Image1.Picture.Bitmap)
else
aCanvas.Draw(Rect.Left, Rect.Top, Image2.Picture.Bitmap);
end;

关于image - 在 stringgrid 单元格中插入图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9924259/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com