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

github.com/microsoft/vs-editor-api.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/Editor/FPF/PresentationCore/System.Windows.Input.MouseButtonEventArgs.cs')
-rw-r--r--src/Editor/FPF/PresentationCore/System.Windows.Input.MouseButtonEventArgs.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/Editor/FPF/PresentationCore/System.Windows.Input.MouseButtonEventArgs.cs b/src/Editor/FPF/PresentationCore/System.Windows.Input.MouseButtonEventArgs.cs
new file mode 100644
index 0000000..3709e5f
--- /dev/null
+++ b/src/Editor/FPF/PresentationCore/System.Windows.Input.MouseButtonEventArgs.cs
@@ -0,0 +1,12 @@
+namespace System.Windows.Input
+{
+ public class MouseButtonEventArgs : System.Windows.Input.MouseEventArgs
+ {
+
+
+ public System.Int32 ClickCount { get { throw new System.NotImplementedException(); } }
+ public System.Windows.Input.MouseButton ChangedButton { get { throw new System.NotImplementedException(); } }
+ public System.Windows.Input.MouseButtonState ButtonState { get { throw new System.NotImplementedException(); } }
+
+ }
+} \ No newline at end of file