2

很奇怪的场景。我有以下 App.xaml

<Application x:Class="BrokenBG.App"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             StartupUri="MainWindow.xaml">
    <Application.Resources>

        <Style x:Key="WindowStyleBase" TargetType="ContentControl" >
            <Setter Property="Background" Value="Red" />
          </Style>
        <Style x:Key="WindowStyle" TargetType="{x:Type Window}" BasedOn="{StaticResource WindowStyleBase}" />

    </Application.Resources>
</Application>

还有一个带有样式集的普通空窗口:

<Window x:Class="BrokenBG.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="MainWindow" Height="350" Width="525" Style="{StaticResource WindowStyle}">
    <Grid>

    </Grid>
</Window>

当我运行应用程序时,一切都很好。我看到了红色的bg。但我在设计师身上看不到它。上面的代码是我在另一个更大的项目中经历的一个重现案例。

当我将 Window Style 从 更改WindowStyleWindowStyleBasethen 时,我可以直接在设计器中看到红色背景颜色。

这可以解决吗?我的窗口有一个深色主题,因此我无法在 Visual Studio / Blend 中设计视图,因为在运行时背景是白色和黑色(我的文本是白色的)

看起来设计师对 BasedOn 解析有问题?(不确定)

4

1 回答 1

2

一件有效的事情,即使它不会编译。您可以将基于的静态资源更改为动态资源。

它会突然开始在设计器中工作,但这不会编译。

我什至把红色改成蓝色,设计师也更新了。

于 2013-10-08T17:17:36.020 回答