| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- //
- // System.Windows.Forms.LayoutEventArgs.cs
- //
- // Author:
- // stubbed out by Daniel Carrera ([email protected])
- // Partially completed by Dennis Hayes ([email protected])
- // Gianandrea Terzi ([email protected])
- //
- // (C) 2002 Ximian, Inc
- //
- namespace System.Windows.Forms {
- // <summary>
- //
- // </summary>
- public sealed class LayoutEventArgs : EventArgs {
- #region Fields
- private Control affectedcontrol;
- private string affectedproperty;
-
- #endregion
- //
- // --- Constructor
- //
- public LayoutEventArgs (Control affectedControl, string affectedProperty)
- {
- affectedproperty = affectedProperty;
- affectedcontrol = affectedControl;
- }
- #region Public Properties
-
- public Control AffectedControl {
- get {
- return affectedcontrol;
- }
- }
- public string AffectedProperty {
- get {
- return affectedproperty;
- }
- }
- #endregion
- }
- }
|