0

我找到了一个名为 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}">
4

1 回答 1

1

尝试这个:

<Application.Resources>
    <ResourceDictionary
        Source="/PutDllNameHere;component/ListBox.xaml" />
</Application.Resources>
于 2012-05-15T06:57:28.070 回答