我正在 vb.net 中创建一个任务对话框,但图标没有出现。(其他一切正常)我正在使用 Microsoft.WindowsAPICodePack.Dialogs。我的代码如下:
Dim commandLink_Send = New TaskDialogCommandLink("btnShowAlternatives", "View Alternative Times", "Select an available time")
Dim commandLink_Ignore = New TaskDialogCommandLink("buttonIgnore", "Go Back", "Go back to booking form")
**td.Icon = TaskDialogStandardIcon.Shield**
td.Caption = "Application Error"
td.InstructionText = "Booking Clash"
td.Text = "The application has found a clash in one more of the selected resources"
td.Cancelable = False
td.Controls.Add(commandLink_Send)
td.Controls.Add(commandLink_Ignore)
AddHandler commandLink_Send.Click, AddressOf eventHandlers.commandLink_send_click
AddHandler commandLink_Ignore.Click, AddressOf eventHandlers.commandLink_ignore_click
难道我做错了什么
干杯