Kann sein, dass ich Mist erzähle, aber du musst den Dialog "selber" erstellen.
Minimales Beispiel:
(das ist ein cut-out aus meiner eigenen, viel umfangreicheren Funktion. Die Funktion gibt einen Wert zurück, sodass man auf den Dialog reagieren kann)
Delphi-Quellcode:
function MsgBox(psCaption:
string; psText:
string; nHeigth: Integer; aMsgDlgType: TMsgDlgType; aMsgDlgBtn: TMsgDlgButtons; aMsgDlgBtnDef: TMsgDlgBtn): Integer;
var
iModalRes: Integer;
aMsgDialog: TForm;
// vergessen hinzuzufügen
begin
iModalRes := ID_NO;
aMsgDialog := CreateMessageDialog(psText, aMsgDlgType, aMsgDlgBtn, aMsgDlgBtnDef);
with aMsgDialog
do
begin
BringToFront;
Caption := psCaption;
ClientHeight := nHeigth;
BorderIcons := [];
// Keine Border-Icons
BorderStyle := bsNone;
// Keine Titelleiste
FormStyle := fsStayOnTop;
Top := (Screen.Height
div 2) - (Height
div 2);
SetWindowPos(
Handle, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOACTIVATE
or SWP_NOMOVE
or SWP_NOSIZE);
iModalRes := ShowModal;
Free;
end;
Result := iModalRes;
end;
// Aufruf:
case MsgBox('
Caption', '
Text', 100, mtInformation, [mbYes, mbNo, mbClose], mbNo)
of
ID_YES: ;
ID_NO: ;
ID_CLOSE: ;
end;