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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/System/Microsoft.Win32/PowerModeChangedEventArgs.cs')
-rw-r--r--mcs/class/System/Microsoft.Win32/PowerModeChangedEventArgs.cs32
1 files changed, 32 insertions, 0 deletions
diff --git a/mcs/class/System/Microsoft.Win32/PowerModeChangedEventArgs.cs b/mcs/class/System/Microsoft.Win32/PowerModeChangedEventArgs.cs
new file mode 100644
index 00000000000..d00039e7c03
--- /dev/null
+++ b/mcs/class/System/Microsoft.Win32/PowerModeChangedEventArgs.cs
@@ -0,0 +1,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;
+ }
+
+ }
+
+ }
+
+}