我需要使用资源来设置
WPF应用程序中主窗口的颜色.由于资源声明在窗口声明之后(我正在导入资源字典),我不能在Window对象中使用Background属性.所以,我以为我会这样设置背景:
<Window.Resources> ... </Window.Resources> <Window.Background> <SolidColorBrush Color="{StaticResource WindowBackgroundBrush}" /> </Window.Background>
尝试这个
原文链接:https://www.f2er.com/windows/371066.html<Window.Background> <StaticResource ResourceKey="WindowBackgroundBrush" /> </Window.Background>