コード例 #1
0
ファイル: TaskDialog.cs プロジェクト: rikka0w0/Menu98
 /// <summary>
 /// Set the footer icon of the taskdialog, this property is not effective once the taskdialog is shown
 /// </summary>
 public void SetFooterIcon(TASKDIALOG_ICON Icon)
 {
     this._UseCustomFooterIcon    = false;
     taskDialogConfig.hFooterIcon = (IntPtr)Icon;
 }
コード例 #2
0
ファイル: TaskDialog.cs プロジェクト: rikka0w0/Menu98
 /// <summary>
 /// Set the icon of the taskdialog, this property is not effective once the taskdialog is shown
 /// </summary>
 public void SetIcon(TASKDIALOG_ICON Icon)
 {
     this._UseCustomIcon        = false;
     taskDialogConfig.hMainIcon = (IntPtr)Icon;
 }