**** Merged from MCS ****
[mono-project.git] / mcs / class / System.Windows.Forms / Gtk / LayoutEventArgs.cs
blob6b60c7e6ad9353faa0cdd71649947837c817d009
1 //
2 // System.Windows.Forms.LayoutEventArgs.cs
3 //
4 // Author:
5 // stubbed out by Daniel Carrera (dcarrera@math.toronto.edu)
6 // Partially completed by Dennis Hayes (dennish@raytek.com)
7 // Gianandrea Terzi (gianandrea.terzi@lario.com)
8 //
9 // (C) 2002 Ximian, Inc
12 namespace System.Windows.Forms {
14 // <summary>
16 // </summary>
18 public sealed class LayoutEventArgs : EventArgs {
20 #region Fields
22 private Control affectedcontrol;
23 private string affectedproperty;
25 #endregion
27 // --- Constructor
29 public LayoutEventArgs (Control affectedControl, string affectedProperty)
31 affectedproperty = affectedProperty;
32 affectedcontrol = affectedControl;
35 #region Public Properties
37 public Control AffectedControl {
38 get {
39 return affectedcontrol;
42 public string AffectedProperty {
43 get {
44 return affectedproperty;
48 #endregion