如何在Delphi 7的程序中使用特定的字体名称及其大小,如下所示:
procedure TForm1.infoClick(Sender: TObject);
begin
ShowMessage(
'- Lorem ipsum dolor sit amet.'+chr(10)+
'- Lorem ipsum dolor sit amet.'+chr(10)+
'- Lorem ipsum dolor sit amet.'
);
end;
答案 0 :(得分:7)
在Dialogs
单元中,CreateMessageDialog: TForm
函数中使用了函数MessageDlg
来创建邮件表单。您可以在表单显示之前使用它进行一些自定义:
procedure TForm5.Button1Click(Sender: TObject);
var
i: Integer;
begin
with CreateMessageDialog('- Lorem ipsum dolor sit amet.', mtInformation, [mbOk], mbOk) do
try
// Sets font for whole form including buttons
{
Font.Name := 'Times New Roman';
Font.Size := 12;
}
// Sets font for label(s) only
for i := 0 to ControlCount - 1 do
if Controls[i] is TLabel then
with Controls[i] as TLabel do
begin
Font.Name := 'Times New Roman';
Font.Size := 12;
end;
ShowModal;
finally
Free;
end;
end;
答案 1 :(得分:0)
您可以根据需要创建自己的表单并设置样式:
ShowModal
显示给用户的函数。