Registriert seit: 11. Okt 2003
Ort: Elbflorenz
44.291 Beiträge
Delphi 12 Athens
|
AW: FMX MessageDialog Buttons
23. Jun 2022, 09:49
Jo, seh ich auch
Delphi-Quellcode:
procedure TForm21.FormMouseUp(Sender: TObject; Button: TMouseButton; Shift: TShiftState; X, Y: Single);
begin
TDialogService.MessageDialog('hallo', TMsgDlgType.mtConfirmation,
[TMsgDlgBtn.mbYes, TMsgDlgBtn.mbNo, TMsgDlgBtn.mbAbort], TMsgDlgBtn.mbNo, 0,
procedure(const AResult: TModalResult)
begin
end);
end;
Was aber auch verständlich ist, denn wenn ich mir in Fmx.Dialogs.Win das TFMXDialogService.MessageDialog ansehe, dann wird mir schlecht.
Ein Therapeut entspricht 1024 Gigapeut.
Geändert von himitsu (23. Jun 2022 um 09:59 Uhr)
|