2

我有一个单独的解决方案,我想在其中创建一个用户控件库,我可以在其他项目中将其作为 dll 引用(所以只使用 dll,后面没有 xaml+代码)。

例如,我可以有这样的控制:

<UserControl x:Class="WpfUserControlsLibrary.PlayerControls"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
             xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
             mc:Ignorable="d" 
             d:DesignHeight="300" d:DesignWidth="300">
    <UserControl.Resources>
        <Style x:Key="btnPlayer" TargetType="{x:Type Button}">
            <Setter Property="Width" Value="100"/>
            <Setter Property="Height" Value="50"/>
        </Style>
    </UserControl.Resources>
    <StackPanel Orientation="Horizontal">
        <Button Style="{StaticResource btnPlayer}" Name="btnPlay" Click="btnPlay_Click">Play</Button>
        <Button Style="{StaticResource btnPlayer}" Name="btnStop" Click="btnStop_Click">Stop</Button>
        <Button Style="{StaticResource btnPlayer}" Name="btnPause" Click="btnPause_Click">Pause</Button>
    </StackPanel>
</UserControl>

对于上面的代码,假设有另一个解决方案 TestUI 引用了 WpfUserControlsLibrary 的 dll,我想要以下内容:

  • 使用按钮的默认样式
  • 如果 TestUI 具有自定义外观,我希望能够通过定义或继承 TestUI 资源来更改按钮的默认样式(我还不知道这部分是否可以完成或如何完成)

有没有办法声明这个控件或定义它的样式/模板,以便它的 UI 可以从另一个引用这个 dll 的项目中定制(同时保留代码隐藏功能)?

4

1 回答 1

1

在您的 App.xaml 文件中,将资源文件添加为 MergedDictionary。

由于您是从另一个程序集获取的,请在MSDN - WPF 中的 Pack URIs 中查看引用它的正确方法

我在我当前的项目中使用它!您的代码应如下所示:

<ResourceDictionary>
   <ResourceDictionary.MergedDictionaries>
      <ResourceDictionary Source="myresourcedictionary.xaml"/>
      <ResourceDictionary Source="myresourcedictionary2.xaml"/>
    </ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
于 2013-10-01T09:36:19.507 回答