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

PowerModeChangedEventArgs.cs « Microsoft.Win32 « System « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d00039e7c035bbf43db8147e9d423fcf49dd20a3 (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
//
// PowerModeChangedEventArgs.cs
//
// Author:
//  Johannes Roith (johannes@jroith.de)
//
// (C) 2002 Johannes Roith
//
namespace Microsoft.Win32 {

	/// <summary>
	/// </summary>
	public class PowerModeChangedEventArgs : System.EventArgs{
	
		PowerModes mymode;
		
		public PowerModeChangedEventArgs(PowerModes mode)
		{
			this.mymode = mode;
		}
		
		public PowerModes Mode {
	
			get{
				return mymode;
			}
			
		}
	
	}

}