using System; using System.Collections.Generic; using System.Text; namespace BSE.Windows.Forms { /// /// Provides data for the PanelStyleChange event. /// /// 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. /// public class PanelStyleChangeEventArgs : EventArgs { #region FieldsPrivate private PanelStyle m_ePanelStyle; #endregion #region Properties /// /// Gets the style of the panel. /// public PanelStyle PanelStyle { get { return this.m_ePanelStyle; } } #endregion #region MethodsPublic /// /// Arguments used when a PanelStyleChange event occurs. /// /// the style of the panel. public PanelStyleChangeEventArgs(PanelStyle ePanelStyle) { this.m_ePanelStyle = ePanelStyle; } #endregion } }