2

tl;博士

问题描述

首先,我是 WPF 的新手,我现在几乎不知道我在做什么......

我正在开发一个 Visual Studio 2013 Extension,我在其中创建了一个自定义 Tool Window。由于 WPF 控件不从父级(即 Visual Studio 主窗口)继承主题,因此您必须手动进行。

我读到我应该使用Microsoft.VisualStudio.Shell.VsBrushesMicrosoft.VisualStudio.PlatformUI.EnvironmentColors类,因为它们定义了 Visual Studio shell 主题特定的常量。(请参见此处的示例。)只要我在Style标签中使用它,这一切都很好。

但是,Microsoft 的Menu 和 MenuItem ControlTemplate Example解释了如何使用<ContentTemplate>. 问题是,VsBrush 和 EnvironmentColors 都不能在<ContentTemplate>. 当我设置颜色时(没有详细信息,问题是什么),或者 UI 只是挂起,甚至没有加载,要么有一个通用的异常抱怨。在后一种情况下,当我破坏应用程序时,我总是在运行中。<GradintStop>MS.Win32.UnsafeNativeMethods.GetMessageW()

问题

  1. 有人可以解释一下我做错了什么以及为什么我不能在我的 中使用VsBrushesandEnvironmentColors<ContentTemplate>吗?
  2. 如何使用建议的<ContentTemplate>格式正确设置 Visual Studio 扩展的样式?

解决问题的尝试

  1. 我检查了整个包的构造函数,VsBrushes可以获取类的颜色常量。只有在构造函数之后 UI 才会挂起,因此VsBrushes必须在处理 XAML 时初始化这些值。
  2. 如上所述,不使用<ControlTemplate>常量也可以使用。
  3. 调查异常:当解析器试图解释<GradientStop>标签的 Color 属性时抛出它。没有解释到底是什么失败了。(过了一会儿——因为代码发生了一些变化——异常停止了,UI 开始挂起。)
  4. 如果我更改LinearGradientBrushSolidColorBrush问题仍然存在(当然这次的异常略有不同):'Set property 'System.Windows.Media.SolidColorBrush.Color' 抛出异常。
  5. 问题并不<MenuItem>具体。它可以通过<Button>任意 WPF 控件进行复制,并且我猜想是可以使用的。

资源

这是我用于定义 MenuItems 样式的代码:

<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
                    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
                    xmlns:vsShell="clr-namespace:Microsoft.VisualStudio.Shell;assembly=Microsoft.VisualStudio.Shell.12.0"
                    xmlns:vsUI="clr-namespace:Microsoft.VisualStudio.PlatformUI;assembly=Microsoft.VisualStudio.Shell.12.0">
    <Color x:Key="MyColor">#FFFFFF00</Color>
    <Style x:Key="{x:Type Menu}" TargetType="{x:Type Menu}">
        <Setter Property="OverridesDefaultStyle" Value="True" />
        <Setter Property="SnapsToDevicePixels" Value="True" />
        <Setter Property="Template">
            <Setter.Value>
                <ControlTemplate TargetType="{x:Type Menu}">
                    <Border BorderThickness="1">
                        <Border.BorderBrush>
                            <LinearGradientBrush StartPoint="0,0.5" EndPoint="1,0.5">
                                <LinearGradientBrush.GradientStops>
                                    <GradientStopCollection>
                                        <GradientStop Color="{DynamicResource MyColor}" Offset="0.0" />
                                        <GradientStop Color="{DynamicResource {x:Static SystemColors.ActiveBorderColorKey}}" Offset="0.1" />
                                        <GradientStop Color="#FF00FF00" Offset="0.5" />
                                        <!-- The following 3 do not work -->
                                        <GradientStop Color="{DynamicResource {x:Static vsUI:EnvironmentColors.AccentBorderBrushKey}}" Offset="0.8" />
                                        <GradientStop Color="{DynamicResource {x:Static vsShell:VsBrushes.AccentBorderKey}}" Offset="0.8" />
                                        <GradientStop Color="{DynamicResource VsBrush.AccentBorder}" Offset="1.0" />
                                    </GradientStopCollection>
                                </LinearGradientBrush.GradientStops>
                            </LinearGradientBrush>
                        </Border.BorderBrush>
                        <Border.Background>
                            <LinearGradientBrush EndPoint="0,0.5" StartPoint="1,0.5">
                                <GradientStop Color="Blue" Offset="0" />
                                <GradientStop Color="Blue" Offset="1" />
                            </LinearGradientBrush>
                        </Border.Background>
                        <StackPanel ClipToBounds="True" Orientation="Horizontal" IsItemsHost="True" />
                    </Border>
                </ControlTemplate>
            </Setter.Value>
        </Setter>
    </Style>
</ResourceDictionary>

调用堆栈

这是进程“挂起”的地方:

[Managed to Native Transition]  
>   WindowsBase.dll!MS.Win32.UnsafeNativeMethods.GetMessageW(ref System.Windows.Interop.MSG msg, System.Runtime.InteropServices.HandleRef hWnd, int uMsgFilterMin, int uMsgFilterMax) Line 566  C#
WindowsBase.dll!System.Windows.Threading.Dispatcher.GetMessage(ref System.Windows.Interop.MSG msg, System.IntPtr hwnd, int minMessage, int maxMessage) Line 391 C#
WindowsBase.dll!System.Windows.Threading.Dispatcher.PushFrameImpl(System.Windows.Threading.DispatcherFrame frame) Line 979  C#
WindowsBase.dll!System.Windows.Threading.Dispatcher.PushFrame(System.Windows.Threading.DispatcherFrame frame) Line 961  C#
WindowsBase.dll!System.Windows.Threading.Dispatcher.Run() Line 1059 C#
Microsoft.VisualStudio.Shell.12.0.dll!Microsoft.Internal.VisualStudio.PlatformUI.BackgroundDispatcher.ThreadProc(object arg)    Unknown
mscorlib.dll!System.Threading.ThreadHelper.ThreadStart_Context(object state)    Unknown
mscorlib.dll!System.Threading.ExecutionContext.RunInternal(System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, object state, bool preserveSyncCtx)   Unknown
mscorlib.dll!System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, object state, bool preserveSyncCtx)   Unknown
mscorlib.dll!System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, object state) Unknown
mscorlib.dll!System.Threading.ThreadHelper.ThreadStart(object obj)  Unknown
4

1 回答 1

2

解析度

所有这些以下 3 行都会导致编译错误,因为编译器需要 aColor但我给了它 a Brush

<GradientStop Color="{DynamicResource {x:Static vsUI:EnvironmentColors.AccentBorderBrushKey}}" Offset="0.8" />
<GradientStop Color="{DynamicResource {x:Static vsShell:VsBrushes.AccentBorderKey}}" Offset="0.8" />
<GradientStop Color="{DynamicResource VsBrush.AccentBorder}" Offset="1.0" />

我应该<GradientStop Color="{DynamicResource {x:Static vsUI:EnvironmentColors.AccentBorderColorKey}}" Offset="0.8" />改用。(请注意,我使用 AccentBorderColorKey 而不是 AccentBorderBrushKey。)

XAML 正在解析字符串并尝试解释导致一个简单事实的内容:XAML 是无类型的(一切都是字符串)。由于错误消息('Set property 'System.Windows.Media.LinearGradientBrush.Color' throw an exception.)不是很健谈,它并不能真正帮助您了解您做错了什么。

学过的知识

如果编译器没有为您执行此操作(或没有告诉您这是导致问题的原因),请尝试手动检查类型。

于 2015-02-09T14:57:41.780 回答