Files
@ 57166784a4ee
Branch filter:
Location: seniordesign-ui/Demo.WindowsForms/BSE.Windows.Forms/XPander/PanelStyleChangeEventArgs.cs - annotation
57166784a4ee
1.4 KiB
text/x-csharp
fixes and sutch for the app
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 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 65c134a3d619 | using System;
using System.Collections.Generic;
using System.Text;
namespace BSE.Windows.Forms
{
/// <summary>
/// Provides data for the PanelStyleChange event.
/// </summary>
/// <copyright>Copyright © 2006-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 class PanelStyleChangeEventArgs : EventArgs
{
#region FieldsPrivate
private PanelStyle m_ePanelStyle;
#endregion
#region Properties
/// <summary>
/// Gets the style of the panel.
/// </summary>
public PanelStyle PanelStyle
{
get { return this.m_ePanelStyle; }
}
#endregion
#region MethodsPublic
/// <summary>
/// Arguments used when a PanelStyleChange event occurs.
/// </summary>
/// <param name="ePanelStyle">the style of the panel.</param>
public PanelStyleChangeEventArgs(PanelStyle ePanelStyle)
{
this.m_ePanelStyle = ePanelStyle;
}
#endregion
}
}
|