// // System.Windows.Forms.FrameStyle.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 { /// /// Specifies the frame style of the selected control. /// public enum FrameStyle { //Values were verified with enumcheck. Dashed = 0, Thick = 1, } }