(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / class / System.Windows.Forms / WINELib / CheckState.cs
blob94464793c81340063f61d4fe50d7ef79f542b25c
1 //
2 // System.Windows.Forms.CheckState.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 {
15 /// <summary>
16 /// Specifies the state of a control, such as a check box,
17 /// that can be checked, unchecked, or set to an indeterminate state.
18 /// </summary>
19 //[Serializable]
20 public enum CheckState {
22 //Values were verified with enumcheck.
23 Unchecked = 0,
24 Checked = 1,
25 Indeterminate = 2,