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

FormWindowState.cs « System.Windows.Forms « System.Windows.Forms « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3ec6c3212f2246bbf01af4a960f7fc78d0242930 (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
//
// System.Windows.Forms.FormWindowState.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 how a form window is displayed.
	/// </summary>
	[Serializable]
	[ComVisible(true)]
	public enum FormWindowState
	{
		//Values were verified with enumcheck.
		Normal = 0,
		Maximized = 1,
		Minimized = 2,
	}
}