很奇怪的场景。我有以下 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 从 更改WindowStyle
为WindowStyleBase
then 时,我可以直接在设计器中看到红色背景颜色。
这可以解决吗?我的窗口有一个深色主题,因此我无法在 Visual Studio / Blend 中设计视图,因为在运行时背景是白色和黑色(我的文本是白色的)
看起来设计师对 BasedOn 解析有问题?(不确定)