デルファイ10.1.2ベルリンでは、Vcl.Dialogs.MessageDlg
関数では、DlgType
定数mtInformation
とmtConfirmation
は同じダイアログアイコンを作成します。たとえば、次のようにDlgTypeがmtConfirmation定数のMessageDlgアイコンが間違っていますか?
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;
しかしDlgType
定数mtConfirmation
表示質問マークアイコンは、(他のDlgType
定数mtWarning
とmtError
としてそれぞれを作成するべきではありません別のアイコン)?
私はDlgType
定数mtConfirmation
と質問マークアイコンを取得できますか?
を私は今日、まさにこの問題を持っていた。..尋ねてくれてありがとう、と答えをトムのおかげで –