added samples
[windows-sources.git] / sdk / samples / CrossTechnologySamples / VistaBridge / vistabridgelibrary / dialogs / taskdialogstandardbutton.cs
blobf71a03c5ae7e5e25af8f410b12fcc7ba927d364b
1 using System;
2 using System.Collections.Generic;
3 using System.Text;
5 namespace Microsoft.SDK.Samples.VistaBridge.Library
7 /// <summary>
8 /// Identifies one of the standard buttons that
9 /// can be displayed via TaskDialog.
10 /// </summary>
11 [Flags]
12 public enum TaskDialogStandardButton
14 None = 0x0000,
15 Ok = 0x0001,
16 Yes = 0x0002,
17 No = 0x0004,
18 Cancel = 0x0008,
19 Retry = 0x0010,
20 Close = 0x0020