Files
@ 105a3022c22b
Branch filter:
Location: seniordesign-ui/Demo.WindowsForms/BSE.Windows.Forms/XPander/PanelStyle.cs - annotation
105a3022c22b
892 B
text/x-csharp
fixed the chart cross threading issue, renamed items on form
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,
}
}
|