| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- //
- // System.Windows.Forms.StatusBarPanelClickEventArgs
- //
- // Author:
- // stubbed out by Richard Baumann ([email protected])
- // Partially completed by Dennis Hayes ([email protected])
- // Gianandrea Terzi ([email protected])
- //
- // (C) Ximian, Inc., 2002
- //
- namespace System.Windows.Forms {
- /// <summary>
- /// Provides data for the PanelClick event.
- /// </summary>
- public class StatusBarPanelClickEventArgs : MouseEventArgs {
- private StatusBarPanel panel;
- /// --- Constructor ---
- public StatusBarPanelClickEventArgs(StatusBarPanel panel, MouseButtons button, int clicks, int x, int y) : base(button, clicks, x, y, 0)
- {
- this.panel = panel;
- }
- #region Public Properties
-
- /// <summary>
- /// StatusBarPanel Property
- /// </summary>
- ///
- /// <remarks>
- /// Gets the StatusBarPanel to draw.
- /// </remarks>
- public StatusBarPanel StatusBarPanel
- {
- get
- {
- return panel;
- }
- }
- #endregion
- }
- }
|