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

ConvertEventArgs.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: 9b3eed0dc22f5ab0229c3b7893d8290b7a1d139c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
////
//// System.Windows.Forms.ConvertEventArgs.cs
////
//// Author:
////   stubbed out by Jaak Simm (jaaksimm@firm.ee)
////
//// (C) Ximian, Inc., 2002
////
//
//namespace System.Windows.Forms
//{
//	/// <summary>
//	/// Provides data for the Format and Parse events.
//	/// ToDo note:
//	///  - no methods are implemented
//	/// </summary>
//
//	public class ConvertEventArgs : EventArgs
//	{
//		#region Fields
//		Type desiredType;
//		object value;
//		#endregion
//		
//		
//		
//		#region Constructors
//		public ConvertEventArgs(object value,Type desiredType) {
//			this.desiredType = desiredType;
//			this.value = value;
//		}
//		#endregion
//		
//		
//		
//		#region Properties
//		public Type DesiredType {
//			get { return this.desiredType; }
//		}
//		
//		public object Value {
//			get { return this.value; }
//			set { this.value=value; }
//		}
//		#endregion
//
//	}
//}