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.Media.PathGeometry.cs')
-rw-r--r--src/Editor/FPF/PresentationCore/System.Windows.Media.PathGeometry.cs17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/Editor/FPF/PresentationCore/System.Windows.Media.PathGeometry.cs b/src/Editor/FPF/PresentationCore/System.Windows.Media.PathGeometry.cs
new file mode 100644
index 0000000..e60c849
--- /dev/null
+++ b/src/Editor/FPF/PresentationCore/System.Windows.Media.PathGeometry.cs
@@ -0,0 +1,17 @@
+namespace System.Windows.Media
+{
+ public class PathGeometry : System.Windows.Media.Geometry
+ { public PathGeometry(){}
+ public PathGeometry(System.Collections.Generic.IEnumerable<System.Windows.Media.PathFigure> param0){}
+ public void AddGeometry(System.Windows.Media.Geometry param0){throw new System.NotImplementedException();}
+
+ public override bool IsEmpty()
+ {
+ throw new NotImplementedException();
+ }
+
+ public System.Windows.Media.FillRule FillRule { set { throw new System.NotImplementedException(); } }
+ public System.Windows.Media.PathFigureCollection Figures { get { throw new System.NotImplementedException(); } }
+
+ }
+} \ No newline at end of file