From 1fc9b64c907fbbe7840c65ec571061123fbb4231 Mon Sep 17 00:00:00 2001 From: Paul Vick Date: Wed, 18 May 2016 09:47:25 -0700 Subject: [PATCH] Fix build break --- src/VisualStudio/Core/Impl/Options/AbstractOptionPageControl.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/VisualStudio/Core/Impl/Options/AbstractOptionPageControl.cs b/src/VisualStudio/Core/Impl/Options/AbstractOptionPageControl.cs index ad16d2c02fd..e4c01291f90 100644 --- a/src/VisualStudio/Core/Impl/Options/AbstractOptionPageControl.cs +++ b/src/VisualStudio/Core/Impl/Options/AbstractOptionPageControl.cs @@ -35,7 +35,7 @@ public AbstractOptionPageControl(IServiceProvider serviceProvider) checkBoxStyle.Setters.Add(new Setter(CheckBox.ForegroundProperty, new DynamicResourceExtension(SystemColors.WindowTextBrushKey))); Resources.Add(typeof(CheckBox), checkBoxStyle); - var textBoxStyle = new Style(typeof(TextBox)); + var textBoxStyle = new System.Windows.Style(typeof(TextBox)); textBoxStyle.Setters.Add(new Setter(TextBox.MarginProperty, new Thickness() { Left = 7, Right = 7 })); textBoxStyle.Setters.Add(new Setter(TextBox.ForegroundProperty, new DynamicResourceExtension(SystemColors.WindowTextBrushKey))); Resources.Add(typeof(TextBox), textBoxStyle); -- GitLab