switched to unix style line terminators
[mono.git] / mcs / class / System.Windows.Forms / System.Windows.Forms / UpDownEventArgs.cs
1 //
2 // System.Windows.Forms.UpDownEventArgs
3 //
4 // Author:
5 //       stubbed out by Dennis Hayes(dennish@raytek.com)
6 //   Gianandrea Terzi (gianandrea.terzi@lario.com)
7 //
8 // (C) Ximian, Inc., 2002
9 //
10 using System;
11 namespace System.Windows.Forms {
12
13         /// <summary>
14         /// Summary description for UpDownEventArgs.
15         /// </summary>
16         public class UpDownEventArgs : EventArgs {
17                 private int buttonID;
18
19                 public UpDownEventArgs(int buttonPushed){
20                         buttonID = buttonPushed;
21                 }
22
23                 public int ButtonID {
24                         get {
25                                 return buttonID;
26                         }
27                 }
28         }
29 }