标签: wpf user-controls styles
有没有办法将样式(特别是样式数据触发器)应用到它自己的XAML代码中的UserControl?
UserControl
答案 0 :(得分:0)
您无法在UserControl的资源中访问xaml中的Style - 您可以选择以下几个选项:
Style = FindResource(<name>) as Style
<local:MyUserControl Style="{StaticResource MyStyle}"
希望这有帮助。