我在资源词典中声明了一个样式。
<Style TargetType="Window">
<Setter Property="Width" Value="500"/>
<Setter Property="Height" Value="300"/>
</Style>
<Style TargetType="Window">
<Setter Property="Width" Value="800"/>
<Setter Property="Height" Value="600"/>
</Style>
我想要第一个样式应用于从IDialogWindow继承的视图,第二个样式应用于从IMainWindow继承的视图。
编辑:我们的想法是在整个应用程序中根据窗口类型强制执行样式。