repo.or.cz
/
windows-sources.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
added samples
[windows-sources.git]
/
sdk
/
samples
/
CrossTechnologySamples
/
VistaBridge
/
vistabridgelibrary
/
dialogs
/
taskdialogstandardbutton.cs
blob
f71a03c5ae7e5e25af8f410b12fcc7ba927d364b
1
using
System
;
2
using
System
.
Collections
.
Generic
;
3
using
System
.
Text
;
4
5
namespace
Microsoft
.
SDK
.
Samples
.
VistaBridge
.
Library
6
{
7
/// <summary>
8
/// Identifies one of the standard buttons that
9
/// can be displayed via TaskDialog.
10
/// </summary>
11
[
Flags
]
12
public enum
TaskDialogStandardButton
13
{
14
None
=
0x0000
,
15
Ok
=
0x0001
,
16
Yes
=
0x0002
,
17
No
=
0x0004
,
18
Cancel
=
0x0008
,
19
Retry
=
0x0010
,
20
Close
=
0x0020
21
}
22
}