Possible Duplicate:
Can I make a TMemo size itself to the text it contains?




需要做自动调整大小的备忘录:高度和宽度。

我自动调整高度,如下所示:

function TForm1.AutoSizeMemoY(Memo: TMemo): word;
begin
  Canvas.Font := Memo.Font;
  Result := Canvas.TextExtent(Memo.Lines.Strings[0]).cy * Memo.Lines.Count +
    Canvas.TextExtent(Memo.Lines.Strings[0]).cy;
end;


但是我不知道如何自动调整宽度。我有个主意:如果滚动条被激活,则增加宽度直到它变为非活动状态,但是我不知道如何实现。

最佳答案

不是最好的解决方案,但它可以工作:

function GetTextWidth(F: TFont; s: string): integer;
var
  l: TLabel;
begin
  l := TLabel.Create(nil);
  try
    l.Font.Assign(F);
    l.Caption := s;
    l.AutoSize := True;
    result := l.Width + 8;
  finally
    l.Free;
  end;
end;


并将以下代码添加到this answer中的Memo1.Onchange事件的末尾

  LineInd := Memo1.Perform(EM_LINEFROMCHAR, Memo1.SelStart, 0);//focused Memo1 line Index
  Wd := GetTextWidth(Memo1.Font, Memo1.Lines[LineInd]);
  //MaxWidthLineInd = index of the line which has the largest width.
  //Init value of MaxWidthLineInd = 0
  if MaxWidthLineInd = LineInd then
    Memo1.Width := Wd
  else begin
    if Wd > Memo1.Width then
    begin
      Memo1.Width := Wd;
      MaxWidthLineInd := LineInd;
    end;
  end;

10-08 01:16