gpt4 book ai didi

delphi - OnDrawCell 中心文本 StringGrid - Delphi

转载 作者:行者123 更新时间:2023-12-02 02:32:23 25 4
gpt4 key购买 nike

我正在尝试使 StringGrid 中的文本居中。经过一番研究,我想出了这个由其他人发布的函数,当在 DefaultDraw:False 上使用时应该可以工作。

procedure TForm1.StringGrid2DrawCell(Sender: TObject; ACol, ARow: Integer;
Rect: TRect; State: TGridDrawState);
var
S: string;
SavedAlign: word;
begin
if ACol = 1 then begin // ACol is zero based
S := StringGrid1.Cells[ACol, ARow]; // cell contents
SavedAlign := SetTextAlign(StringGrid1.Canvas.Handle, TA_CENTER);
StringGrid1.Canvas.TextRect(Rect,
Rect.Left + (Rect.Right - Rect.Left) div 2, Rect.Top + 2, S);
SetTextAlign(StringGrid1.Canvas.Handle, SavedAlign);
end;
end;

但是,如果我设置 DefaultDraw:False,StringGrid 就会出现故障。

函数中用文本填充 StringGrid 的行是

Sg.RowCount := Length(arrpos);
for I := 0 to (Length(arrpos) - 1) do
begin
sg.Cells[0,i] := arrpos[i];
sg.Cells[1,i] := arrby[i];
end;

arrpos 和 arrby 是字符串数组。 sg 是 StringGrid。

之后我需要执行文本以显示在单元格的中心。

更新

对于那些遇到类似问题的人来说,这段代码的关键问题之一是 if if 语句

if ACol = 1 then begin

该行意味着它将仅运行第 1 列的代码,例如第二列,因为 StringGrid 是从 0 开始的。您可以安全地删除 if 语句,它将执行并工作,而无需禁用默认绘图。

最佳答案

这在我的测试中有效

procedure TForm1.sgDrawCell(Sender: TObject; ACol, ARow: Integer; Rect: TRect;
State: TGridDrawState);
var
LStrCell: string;
LRect: TRect;
begin
LStrCell := sg.Cells[ACol, ARow]; // grab cell text
sg.Canvas.FillRect(Rect); // clear the cell
LRect := Rect;
LRect.Top := LRect.Top + 3; // adjust top to center vertical
// draw text
DrawText(sg.Canvas.Handle, PChar(LStrCell), Length(LStrCell), LRect, DT_CENTER);
end;

关于delphi - OnDrawCell 中心文本 StringGrid - Delphi,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4720255/

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