Welcome to mirror list, hosted at ThFree Co, Russian Federation.

DialogResult.cs « Gtk « System.Windows.Forms « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 82a5ff3646c1554acc0021dfd00fcfe5e0345843 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
//
// System.Windows.Forms.DialogResult.cs
//
// Author:
//   Jaak Simm (jaaksimm@firm.ee)
//   Dennis Hayes (dennish@raytek.com)
// (C) 2002 Ximian, Inc.  http://www.ximian.com
//

using System;

namespace System.Windows.Forms
{
	/// <summary>
	/// Specifies identifiers to indicate the return value of a dialog box.
	/// </summary>
	[Serializable]
	//[ComVisible(true)]
	public enum DialogResult
	{
		//Values were verified with enumcheck.
		None = 0,
		OK = 1,
		Cancel = 2,
		Abort = 3,
		Retry = 4,
		Ignore = 5,
		Yes = 6,
		No = 7,
	}
}