Files
@ e2a1895cae7c
Branch filter:
Location: seniordesign-ui/Demo.WindowsForms/BSE.Windows.Forms/XPander/PanelStyle.cs - annotation
e2a1895cae7c
892 B
text/x-csharp
dynamic COM ports!
65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 | using System;
namespace BSE.Windows.Forms
{
/// <summary>
/// Contains information about the style of the panels or xpanderpanels
/// </summary>
/// <copyright>Copyright © 2007-2008 Uwe Eichkorn
/// THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
/// KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
/// IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR
/// PURPOSE. IT CAN BE DISTRIBUTED FREE OF CHARGE AS LONG AS THIS HEADER
/// REMAINS UNCHANGED.
/// </copyright>
public enum PanelStyle
{
/// <summary>
/// Draws the panels caption in the default office 2003 style.
/// </summary>
Default,
/// <summary>
/// Draws the panels caption in the office 2007 style.
/// </summary>
Office2007,
}
}
|