ResourceDict 共享 &设置模板

发布于 2024-12-23 12:34:27 字数 1608 浏览 1 评论 0原文

我将使用 XAMLReader 加载 wpf 屏幕。

我在 Buttons.xaml 文件上有一些 ControlTemplates,并将其保存在公共类库 (ClassLibrary1) 中。 Buttons.xaml 就像这样:

<ResourceDictionary 
   xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
   xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">

   <ControlTemplate x:Key="LeftButton" TargetType="{x:Type Button}">
      // Some codes
   </ControlTemplate>

   <ControlTemplate x:Key="RightButton" TargetType="{x:Type Button}">
      // Some codes  
   </ControlTemplate>
</ResourceDictionary>

在主 WPF 项目上,添加此 dll 作为参考。

我的xaml是这样的:

<UserControl 
  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  Width="800" Height="600">

  <Grid>
    <Grid.Resources>
      <ResourceDictionary x:Key="testSource">
        <ResourceDictionary.MergedDictionaries>
           <ResourceDictionary x:Name="s" Source="pack://application:,,,/ClassLibrary1;component/Buttons.xaml" />
        </ResourceDictionary.MergedDictionaries>
      </ResourceDictionary>
    </Grid.Resources>

    <Button Template="{DynamicResource RightButton}" Content="TestBtn" HorizontalAlignment="Left"  Width="100" Height="100" Margin="474,529,0,0"  ></Button>
  </Grid>
</UserControl>

当我使用 Template="{DynamicResource RightButton}" 模板时未正确加载(实际上屏幕上没有按钮的迹象)。

加载资源字典也没有错误。

我找不到,我应该使用什么来加载此按钮上的模板。谁能帮助我吗?

I will use XAMLReader to load wpf screens.

I have some ControlTemplates on Buttons.xaml file and i am keeping it in a common class library (ClassLibrary1).
Buttons.xaml is like that:

<ResourceDictionary 
   xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
   xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">

   <ControlTemplate x:Key="LeftButton" TargetType="{x:Type Button}">
      // Some codes
   </ControlTemplate>

   <ControlTemplate x:Key="RightButton" TargetType="{x:Type Button}">
      // Some codes  
   </ControlTemplate>
</ResourceDictionary>

On main WPF project, this dll is added as reference.

My xaml is like that:

<UserControl 
  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  Width="800" Height="600">

  <Grid>
    <Grid.Resources>
      <ResourceDictionary x:Key="testSource">
        <ResourceDictionary.MergedDictionaries>
           <ResourceDictionary x:Name="s" Source="pack://application:,,,/ClassLibrary1;component/Buttons.xaml" />
        </ResourceDictionary.MergedDictionaries>
      </ResourceDictionary>
    </Grid.Resources>

    <Button Template="{DynamicResource RightButton}" Content="TestBtn" HorizontalAlignment="Left"  Width="100" Height="100" Margin="474,529,0,0"  ></Button>
  </Grid>
</UserControl>

When i use Template="{DynamicResource RightButton}" template is not loaded correctly (actually there is no sign of button on screen).

Also there is no error about loading the resourcedictionary.

I couldn't find, what should i use in order to load template on this button. Can anyone help me?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文