コード例 #1
0
ファイル: TaskDialog.cs プロジェクト: ROOT-LOGIN/bubble
 public static extern IntPtr TaskDialog(IntPtr hwnd, IntPtr hinstance, [MarshalAs(UnmanagedType.LPWStr)] string title, [MarshalAs(UnmanagedType.LPWStr)] string instruction, [MarshalAs(UnmanagedType.LPWStr)] string content, TaskDialogCommonButton commonButtons, IntPtr icon, out int button);
コード例 #2
0
 public TaskDialogCommandLink(TaskDialogCommonButton id, string text) : base(id, text)
 {
 }
コード例 #3
0
 public TaskDialogCommandLink(TaskDialogCommonButton id, string text, string instruction) : this((int)id, text, instruction)
 {
 }
コード例 #4
0
 public TaskDialogRadioButton(TaskDialogCommonButton id, string text) : base(id, text)
 {
 }