我找到了一个名为VIBlend http://viblend.com/products/net/wpf/controls/free-wpf-controls.aspx的框架。我已经下载了它,并且有一个包含样式的DLL文件。它包含一个包含样式的dll。其中一个样式包含在名为ListBox.xaml的文件中(在dll中编译)。
它包含一些样式。其中一个声明如下:
现在我想知道如何使用这种风格。如果创建了对该dll的引用但现在? 我试过这个,但它不起作用......
<UserControl.Resources>
<ResourceDictionary x:Key="listBoxStyle" Source="Office2010SilverListBoxStyle"/>
</UserControl.Resources>
<ListBox x:Name="listBox" Style="{StaticResource listBoxStyle}">
答案 0 :(得分:1)
试试这个:
<Application.Resources>
<ResourceDictionary
Source="/PutDllNameHere;component/ListBox.xaml" />
</Application.Resources>