**** Merged from MCS ****
[mono-project.git] / mcs / class / System.Windows.Forms / Gtk / DialogResult.cs
blob82a5ff3646c1554acc0021dfd00fcfe5e0345843
1 //
2 // System.Windows.Forms.DialogResult.cs
3 //
4 // Author:
5 // Jaak Simm (jaaksimm@firm.ee)
6 // Dennis Hayes (dennish@raytek.com)
7 // (C) 2002 Ximian, Inc. http://www.ximian.com
8 //
10 using System;
12 namespace System.Windows.Forms
14 /// <summary>
15 /// Specifies identifiers to indicate the return value of a dialog box.
16 /// </summary>
17 [Serializable]
18 //[ComVisible(true)]
19 public enum DialogResult
21 //Values were verified with enumcheck.
22 None = 0,
23 OK = 1,
24 Cancel = 2,
25 Abort = 3,
26 Retry = 4,
27 Ignore = 5,
28 Yes = 6,
29 No = 7,