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.SolidColorBrush.cs')
-rw-r--r--src/Editor/FPF/PresentationCore/System.Windows.Media.SolidColorBrush.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/Editor/FPF/PresentationCore/System.Windows.Media.SolidColorBrush.cs b/src/Editor/FPF/PresentationCore/System.Windows.Media.SolidColorBrush.cs
new file mode 100644
index 0000000..b26bfa4
--- /dev/null
+++ b/src/Editor/FPF/PresentationCore/System.Windows.Media.SolidColorBrush.cs
@@ -0,0 +1,14 @@
+namespace System.Windows.Media
+{
+ public class SolidColorBrush : System.Windows.Media.Brush
+ {
+ public SolidColorBrush(System.Windows.Media.Color color)
+ {
+ this.Color = color;
+ }
+
+ public new System.Windows.Media.SolidColorBrush Clone() { return new SolidColorBrush(Color); }
+ public System.Windows.Media.Color Color { get; set; }
+
+ }
+} \ No newline at end of file