Files
@ 2f841e844536
Branch filter:
Location: seniordesign-ui/Demo.WindowsForms/BSE.Windows.Forms/XPander/XPanderStateChangeEventArgs.cs - annotation
2f841e844536
1.2 KiB
text/x-csharp
fixed the problem of two forms being created. still need to fix the addToChart()
and addMarker()
and addMarker()
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;
namespace BSE.Windows.Forms
{
/// <summary>
/// Provides data for the XPanderStateChange 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 XPanderStateChangeEventArgs : EventArgs
{
#region FieldsPrivate
private bool m_bExpand;
#endregion
#region Properties
/// <summary>
/// Gets a value indicating whether the panel expands.
/// </summary>
public bool Expand
{
get {return m_bExpand;}
}
#endregion
#region MethodsPublic
/// <summary>
/// arguments used when a XPanderStateChange event occurs.
/// </summary>
/// <param name="bExpand">Gets a value indicating whether the panel expands.</param>
public XPanderStateChangeEventArgs(bool bExpand)
{
this.m_bExpand = bExpand;
}
#endregion
}
}
|