//
// System.Windows.Forms.FlatStyle.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 the appearance of a control.
/// </summary>
//[Serializable]
public enum FlatStyle {
//Values were verified with enumcheck.
Flat = 0,
Popup = 1,
Standard = 2,
System = 3,
}
}
|