* XplatUIX11.cs: Removed unused hwnd var in SetBorderStyle.
[mono.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / MouseEventArgs.cs
index 138d64d988e2dc91fa0fc49b476d658c70ae0a00..5f17d271f70d74bd52a85e1a1bfae0c7cc7f58ae 100644 (file)
@@ -27,6 +27,7 @@
 // COMPLETE
 
 using System.Runtime.InteropServices;
+using System.Drawing;
 
 namespace System.Windows.Forms {
        [ComVisible(true)]
@@ -77,6 +78,13 @@ namespace System.Windows.Forms {
                                return this.y;
                        }
                }
+#if NET_2_0
+               public Point Location {
+                       get {
+                               return new Point (this.x, this.y);
+                       }
+               }
+#endif
                #endregion      // Public Instance Properties
        }
 }