首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >创建静态资源字典

创建静态资源字典
EN

Stack Overflow用户
提问于 2010-06-14 23:21:02
回答 2查看 3.2K关注 0票数 5

我已经创建了一个要与多个用户控件xaml文件合并的资源字典。我只希望创建此资源字典的一个实例。你知道怎么做吗?

注意:合并应该只通过xaml发生,而不是通过代码。

谢谢和问候,Vishal

EN

回答 2

Stack Overflow用户

回答已采纳

发布于 2010-06-15 04:22:35

这个怎么样?

代码语言:javascript
复制
class DictionaryExtensions
{
    public static ResourceDictionary MyResourceDictionary;

    static DictionaryExtensions()
    {
        MyResourceDictionary = new ResourceDictionary();
        Style buttonStyle = new Style() { TargetType = typeof(Button) };
        buttonStyle.Setters.Add(new Setter(Button.MarginProperty, new Thickness(5)));
        buttonStyle.Setters.Add(new Setter(Button.PaddingProperty, new Thickness(5)));
        buttonStyle.Setters.Add(new Setter(Button.MaxWidthProperty, 100.0d));
        MyResourceDictionary.Add("buttonStyle", buttonStyle);
    }

    public static Type GetMyDictionary(DependencyObject obj)
    {
        return (Type)obj.GetValue(MyDictionaryProperty);
    }

    public static void SetMyDictionary(DependencyObject obj, Type value)
    {
        obj.SetValue(MyDictionaryProperty, value);
    }

    // Using a DependencyProperty as the backing store for MyDictionary.  This enables animation, styling, binding, etc...
    public static readonly DependencyProperty MyDictionaryProperty =
        DependencyProperty.RegisterAttached("MyDictionary", typeof(Type), typeof(UserControl), new UIPropertyMetadata(new PropertyChangedCallback(OnMyDictionaryChanged)));

    public static void OnMyDictionaryChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
    {
        if (d is UserControl)
        {
            (d as UserControl).Resources.MergedDictionaries.Add(MyResourceDictionary);
        }
    }
}

XAML:

代码语言:javascript
复制
<UserControl x:Class="WpfSOTest.UserControl1"
         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"
         xmlns:local="clr-namespace:WpfSOTest"
         mc:Ignorable="d"
         d:DesignHeight="300"
         d:DesignWidth="300"
         local:DictionaryExtensions.MyDictionary="{x:Type ResourceDictionary}">
<Grid>
    <StackPanel>
        <Button Style="{StaticResource buttonStyle}"
                Content="Button1" />
        <Button Style="{StaticResource buttonStyle}"
                Content="Button2" />
    </StackPanel>
</Grid>

您可以使用Type object在多个字典之间动态选择。

票数 3
EN

Stack Overflow用户

发布于 2010-06-14 23:30:09

如果它真的是全球性的,也许你可以将这个字典合并到App.xaml?

票数 1
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/3038423

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档