델파이 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
와 물음표 아이콘을 얻을 수 있습니까?
오늘 바로이 문제를 가지고 있었다를 .. 물어 주셔서 감사합니다, 감사를 톰에 대한 답변 –