| 12345678910111213141516171819202122232425262728293031 |
- //
- // System.Windows.Forms.FormBorderStyle.cs
- //
- // Author:
- // Jaak Simm ([email protected])
- // Dennis Hayes ([email protected])
- // (C) 2002 Ximian, Inc. http://www.ximian.com
- //
- using System;
- namespace System.Windows.Forms {
- /// <summary>
- /// Specifies the border styles for a form.
- /// </summary>
- //[Serializable]
- [ComVisible(true)]
- public enum FormBorderStyle {
- //Values were verified with enumcheck.
- None = 0,
- FixedSingle = 1,
- Fixed3D = 2,
- FixedDialog = 3,
- Sizable = 4,
- FixedToolWindows = 5,
- SizableToolWindow = 6
- }
- }
|