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

SizeGripStyle.cs « WINELib « System.Windows.Forms « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7883ed129155c16be30222e4ff4ffea7824d7088 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//
// System.Windows.Forms.SizeGripStyle.cs
//
// Author:
//   Dennis Hayes (dennish@raytek.com)
// (C) 2002 Ximian, Inc.  http://www.ximian.com
//

using System;

namespace System.Windows.Forms {

	/// <summary>
	/// </summary>
	public enum SizeGripStyle {
		Auto = 0,
		Hide = 2,
		Show = 1
	}
}