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:
authorJohannes Roith <johannes@mono-cvs.ximian.com>2002-09-15 20:17:22 +0400
committerJohannes Roith <johannes@mono-cvs.ximian.com>2002-09-15 20:17:22 +0400
commit8cfefa51291967c3c6fb0a50bdf180c0931e165c (patch)
tree0a782244fc322f089712a847be4fa13446324995 /mcs/class/System/Microsoft.Win32/UserPreferenceChangingEventArgs.cs
parent9819ad6367cc467f6c1feb6d20283be554ce934a (diff)
initial import
svn path=/trunk/mcs/; revision=7476
Diffstat (limited to 'mcs/class/System/Microsoft.Win32/UserPreferenceChangingEventArgs.cs')
-rw-r--r--mcs/class/System/Microsoft.Win32/UserPreferenceChangingEventArgs.cs33
1 files changed, 33 insertions, 0 deletions
diff --git a/mcs/class/System/Microsoft.Win32/UserPreferenceChangingEventArgs.cs b/mcs/class/System/Microsoft.Win32/UserPreferenceChangingEventArgs.cs
new file mode 100644
index 00000000000..9e05693dd49
--- /dev/null
+++ b/mcs/class/System/Microsoft.Win32/UserPreferenceChangingEventArgs.cs
@@ -0,0 +1,33 @@
+//
+// UserPreferenceChangingEventArgs.cs
+//
+// Author:
+// Johannes Roith (johannes@jroith.de)
+//
+// (C) 2002 Johannes Roith
+//
+namespace Microsoft.Win32 {
+
+ /// <summary>
+ /// </summary>
+public class UserPreferenceChangingEventArgs : System.EventArgs{
+
+ UserPreferenceCategory mycategory;
+
+
+ public UserPreferenceChangingEventArgs(UserPreferenceCategory category)
+ {
+ this.mycategory = category;
+ }
+
+ public UserPreferenceCategory category {
+
+ get{
+ return mycategory;
+ }
+
+ }
+
+}
+
+}