| 123456789101112131415161718192021222324252627282930313233343536 |
- //
- // System.Windows.Forms.ControlEventArgs.cs
- //
- // Author:
- // stubbed out by Jaak Simm ([email protected])
- // implemented for Gtk+ by Rachel Hestilow ([email protected])
- // (C) Ximian, Inc., 2002
- namespace System.Windows.Forms
- {
- /// <summary>
- /// Provides data for the ControlAdded and ControlRemoved events.
- /// ToDo note:
- /// - no methods are implemented
- /// </summary>
- public class ControlEventArgs : EventArgs
- {
- Control control;
- #region Constructors
- public ControlEventArgs(Control control) {
- this.control = control;
- }
- #endregion
-
- #region Properties
- public Control Control {
- get { return control; }
- }
- #endregion
- }
- }
|