8,750
社区成员
想给按钮添加一个自动变色的功能
但是写到
<Button.Style>
<Style>
。。。。。
</Style>
</Button.Style>
的时候,handycontrol样式就被清除了,变成没有样式了。
改为
<Button.Style>
<Style>
<Style.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="pack://application:,,,/HandyControl;component/Themes/SkinDefault.xaml" />
<ResourceDictionary Source="pack://application:,,,/HandyControl;component/Themes/Theme.xaml" />
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Style.Resources>
</Style>
</Button.Style>
也不行。
因为不是主目录,所以我怀疑是
component/Themes/Theme.xaml
的路径不对,改为
../component/Themes/Theme.xaml
就报错。
请问如何解决。