Welcome to mirror list, hosted at ThFree Co, Russian Federation.

UpDownEventHandler.cs « System.Windows.Forms « System.Windows.Forms « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 40f951b22c9ef2e94e6ec03d4b7ca96b82249d87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//
// System.Windows.Forms.UpDownEventHandler.cs
//
// Authors:
//   Jaak Simm (jaaksimm@firm.ee)
//   Dennis Hayes (dennish@Raytek.com)
//
// (C) 2002 Ximian, Inc.  http://www.ximian.com
//

namespace System.Windows.Forms
{
	/// <summary>
	/// This type supports the .NET Framework infrastructure 
	/// and is not intended to be used directly from your code.
	/// </summary>
	[Serializable]
	public delegate void UpDownEventHandler(object sender, UpDownEventArgs e);
}