我正在尝试将Control
XAML 中根元素的样式设置StaticResource
为 external 中定义的样式ResourceDictionary
,但是我收到错误消息:
The resource "MyControlStyle" could not be resolved.
<UserControl
...
>
<UserControl.Resources>
<ResourceDictionary Source="..\Styles\MyStyles.xaml" />
</UserControl.Resources>
<UserControl.Style>
<StaticResource ResourceKey="MyControlStyle"/>
</UserControl.Style>
</UserControl>
除了在使用我的控件的 XAML 文件中设置样式之外,如何实现呢?我希望能够从内部设置样式,UserControl
以便我可以在设计器中看到样式的效果UserControl
。