概述
unit Dialog;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls;
type
TForm1 = class (TForm)
Button1: TButton;
procedure Button1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R * .dfm}
procedure TForm1.Button1Click(Sender: TObject);
var
Messaggio : String;
TipoDialogo : TMsgDlgType;
BottVisualizzati : TMsgDlgButtons;
begin
Messaggio : = ' .message for personal dialog. ' ;
TipoDialogo : = mtWarning;
BottVisualizzati : = [mbOK,mbCancel];
with CreateMessageDialog(Messaggio,TipoDialogo,BottVisualizzati)
do try
Caption : = ' This is a new persoanal dialog ' ;
Color : = clAqua;
Font.Color : = clRed;
Width : = 250 ;
ShowModal;
finally
Free;
end;
end;
end.
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls;
type
TForm1 = class (TForm)
Button1: TButton;
procedure Button1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R * .dfm}
procedure TForm1.Button1Click(Sender: TObject);
var
Messaggio : String;
TipoDialogo : TMsgDlgType;
BottVisualizzati : TMsgDlgButtons;
begin
Messaggio : = ' .message for personal dialog. ' ;
TipoDialogo : = mtWarning;
BottVisualizzati : = [mbOK,mbCancel];
with CreateMessageDialog(Messaggio,TipoDialogo,BottVisualizzati)
do try
Caption : = ' This is a new persoanal dialog ' ;
Color : = clAqua;
Font.Color : = clRed;
Width : = 250 ;
ShowModal;
finally
Free;
end;
end;
end.
效果如下:
本文转自 OldHawk 博客园博客,原文链接:http://www.cnblogs.com/taobataoma/archive/2007/09/25/904962.html,如需转载请自行联系原作者
最后
以上就是苗条口红为你收集整理的自定义MessageBox的窗口颜色,字体等属性的全部内容,希望文章能够帮你解决自定义MessageBox的窗口颜色,字体等属性所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复