(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / class / System.Windows.Forms / Gtk / ItemChangedEventArgs.cs
blobe196790f4df00564d7a6ed4c2b63c2ccfe320768
1 //
2 // System.Windows.Forms.ItemChangedEventArgs.cs
3 //
4 // Author:
5 // stubbed out by Daniel Carrera (dcarrera@math.toronto.edu)
6 // 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 class ItemChangedEventArgs : EventArgs {
20 #region Fields
21 // After looking at ItemChangedEvent, It seems index is always zero.
22 // The ItemChangedEventhandler quierys the sender object to find the item changed.
23 private int index = 0; //Never assigned. default to 0.
24 #endregion
26 #region Public Properties
27 public int Index
29 get {
30 return index;
33 #endregion