Rol*_*son 6 delphi customization dialog caption
我知道这个问题从那时起就已经存在(例如,显示自定义消息对话框的最佳方式),但我仍然找不到我想要的东西.
我开始是这样的:
class function TAttracsForm.MessageDlg(const aMsg: string; aDlgType: TMsgDlgType; Buttons: TMsgDlgButtons; aCaptions: array of String; aDefault: TMsgDlgBtn): TModalResult;
var
vDlg: TForm;
i: Integer;
begin
if aButtons.Count = aCaptions.Count then
begin
vDlg := CreateMessageDialog(aMsg, aDlgType, Buttons);
try
for i := 0 aCaptions.Count - 1 do
TButton(vDlg.FindComponent(Buttons[i].Caption)).Caption := aCaptions[i];
vDlg.Position := poDefaultPosOnly;
Result := vDlg.ShowModal;
finally
vDlg.Free;
end;
end;
end;
Run Code Online (Sandbox Code Playgroud)
电话会看起来像:
if (MessageDlg('Really quit application ?', mtWarning,
[mbNo, mbCancel, mbYes], {'No save', 'Cancel', 'Save'}) = mrYes) then
Run Code Online (Sandbox Code Playgroud)
但上面的代码当然不编译.我不知道如何在循环中获取一个集合中的一个项目以及如何在开始时获取它的总计数.
Moh*_*mad 12
你可以使用这段代码:
function MyMessageDlg(CONST Msg: string; DlgTypt: TmsgDlgType; button: TMsgDlgButtons;
Caption: ARRAY OF string; dlgcaption: string): Integer;
var
aMsgdlg: TForm;
i: Integer;
Dlgbutton: Tbutton;
Captionindex: Integer;
begin
aMsgdlg := createMessageDialog(Msg, DlgTypt, button);
aMsgdlg.Caption := dlgcaption;
aMsgdlg.BiDiMode := bdRightToLeft;
Captionindex := 0;
for i := 0 to aMsgdlg.componentcount - 1 Do
begin
if (aMsgdlg.components[i] is Tbutton) then
Begin
Dlgbutton := Tbutton(aMsgdlg.components[i]);
if Captionindex <= High(Caption) then
Dlgbutton.Caption := Caption[Captionindex];
inc(Captionindex);
end;
end;
Result := aMsgdlg.Showmodal;
end;
Run Code Online (Sandbox Code Playgroud)
例如:
MyMessageDlg('Hello World!', mtInformation, [mbYes, mbNo],
['Yessss','Noooo'], 'New MessageDlg Box'):
Run Code Online (Sandbox Code Playgroud)
这样的事情怎么样:
type
TButtonInfo = record
MsgDlgBtn: TMsgDlgBtn;
Caption: string;
end;
function ButtonInfo(MsgDlgBtn: TMsgDlgBtn; const Caption: string): TButtonInfo;
begin
Result.MsgDlgBtn := MsgDlgBtn;
Result.Caption := Caption;
end;
const
ModalResults: array[TMsgDlgBtn] of Integer = (
mrYes, mrNo, mrOk, mrCancel, mrAbort, mrRetry, mrIgnore, mrAll, mrNoToAll,
mrYesToAll, 0, mrClose);
function FindDialogButton(Form: TForm; MsgDlgBtn: TMsgDlgBtn): TButton;
var
i: Integer;
Component: TComponent;
begin
for i := 0 to Form.ComponentCount-1 do begin
Component := Form.Components[i];
if Component is TButton then begin
if TButton(Component).ModalResult=ModalResults[MsgDlgBtn] then begin
Result := TButton(Component);
exit;
end;
end;
end;
Result := nil;
end;
function MessageDlg(
const aMsg: string;
aDlgType: TMsgDlgType;
const Buttons: array of TButtonInfo;
aDefault: TMsgDlgBtn
): TModalResult;
var
i: Integer;
MsgDlgButtons: TMsgDlgButtons;
vDlg: TForm;
begin
MsgDlgButtons := [];
for i := low(Buttons) to high(Buttons) do begin
Assert(not (Buttons[i].MsgDlgBtn in MsgDlgButtons));//assert uniqueness
Include(MsgDlgButtons, Buttons[i].MsgDlgBtn);
end;
vDlg := CreateMessageDialog(aMsg, aDlgType, MsgDlgButtons, aDefault);
try
for i := low(Buttons) to high(Buttons) do begin
FindDialogButton(vDlg, Buttons[i].MsgDlgBtn).Caption := Buttons[i].Caption;
end;
vDlg.Position := poDefaultPosOnly;
Result := vDlg.ShowModal;
finally
vDlg.Free;
end;
end;
procedure Test;
begin
MessageDlg(
'Really quit application ?',
mtWarning,
[ButtonInfo(mbNo, 'Do&n''t save'), ButtonInfo(mbCancel, '&Cancel'), ButtonInfo(mbYes,'&Save')],
mbYes
);
end;
Run Code Online (Sandbox Code Playgroud)
归档时间: |
|
查看次数: |
16697 次 |
最近记录: |