OnDrawCell Center Text StringGrid - Delphi

时间:2011-01-18 03:39:42

标签: delphi tstringgrid

我正在尝试将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就会出现glitchey。

用函数填充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 ACol = 1 then begin

该行表示它只会运行第1列的代码,例如StringGrid基于0的第二列。您可以安全地删除if语句,它将执行并且不必禁用默认绘图。

1 个答案:

答案 0 :(得分:6)

这适用于我的测试

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;