| 12345678910111213141516171819 |
- //
- // System.Windows.Forms.StatusBarPanelStyle.cs
- //
- // Author:
- // Dennis Hayes ([email protected])
- // (C) 2002 Ximian, Inc. http://www.ximian.com
- //
- using System;
- namespace System.Windows.Forms {
- /// <summary>
- /// </summary>
- public enum StatusBarPanelStyle {
- OwnerDraw = 2,
- Text =1
- }
- }
|