W Delphi 10.1.2 Berlin, w funkcji Vcl.Dialogs.MessageDlg
, DlgType
stałe mtInformation
i mtConfirmation
tworzą tę samą ikonę okna dialogowego. Na przykład:Niepoprawna ikona MessageDlg ze stałą DlgType mtConfirmation?
if Vcl.Dialogs.MessageDlg('Do you really want to remove the selected item?', mtConfirmation, mbOKCancel, 0) = mrOk then
begin
RemoveTheSelectedItem;
end;
if Vcl.Dialogs.MessageDlg('Do you really want to remove the selected item?', mtInformation, mbOKCancel, 0) = mrOk then
begin
RemoveTheSelectedItem;
end;
Ale nie powinno stała mtConfirmation
wyświetlania A znak zapytania ikona DlgType
(jak inne DlgType
stałych mtWarning
i mtError
tworzyć każdy inna ikona)?
Jak uzyskać znak zapytania ze znakiem zapytania ze stałą DlgType
mtConfirmation
?
miałem dokładnie dzisiaj ten problem .. dzięki za zaproszenie, a dzięki Toma na odpowiedź –