SharedResourceDictionary:在Blend中编辑资源

时间:2012-07-03 19:09:48

标签: c# .net wpf performance xaml

为了优化我的应用程序,我创建了一个SharedResourceDictionary。有了这个,我在运行时节省了大约250 MB的内存,所以效果很好。

我的问题出在设计时,在Blend 4中,我无法访问我的资源。要修改模板(女巫在我的资源文件中),我通常右键单击我的控件,然后选择编辑模板 - >编辑当前,如下图所示:

enter image description here

我需要以这种方式修改我的模板,它比我的资源文件快100倍并找到好的...我有很多资源......

我的SharedResourceDictionary是这样实现的(在网上找到):

public class SharedResourceDictionary : ResourceDictionary
{
    /// <summary>
    /// Internal cache of loaded dictionaries 
    /// </summary>
    public static Dictionary<Uri, ResourceDictionary> _sharedDictionaries =
        new Dictionary<Uri, ResourceDictionary>();

    /// <summary>
    /// Local member of the source uri
    /// </summary>
    private Uri _sourceUri;

    /// <summary>
    /// Gets or sets the uniform resource identifier (URI) to load resources from.
    /// </summary>
    public new Uri Source
    {
        get
        {
            if (IsInDesignMode)
                return base.Source;

            return _sourceUri;
        }
        set
        {
            _sourceUri = value;

            if (!_sharedDictionaries.ContainsKey(value))
            {
                // If the dictionary is not yet loaded, load it by setting
                // the source of the base class
                base.Source = value;

                // add it to the cache
                _sharedDictionaries.Add(value, this);
            }
            else
            {
                // If the dictionary is already loaded, get it from the cache
                MergedDictionaries.Add(_sharedDictionaries[value]);
            }
        }
    }

    /// <summary>
    /// Check if we are in Blend to prevent error
    /// </summary>
    public bool IsInDesignMode
    {
        get
        {
            return
            (bool)
            DependencyPropertyDescriptor.FromProperty(DesignerProperties.IsInDesignModeProperty,
            typeof(DependencyObject)).Metadata.DefaultValue;
        }
    }
}

有人知道是否有解决方案吗?由于内存改进,我真的想保留这个共享字典,但我也想轻松修改我的资源......

任何线索将不胜感激。谢谢。

编辑:

执行此操作(SharedResourceDictionary),我也遇到静态资源问题:

Provide value on 'System.Windows.Markup.StaticResourceHolder' threw an exception.

当我将它们更改为动态资源时,它可以工作,或者如果我通过简单的ResourceDictionary更改SharedResourceDictionary它也可以。该项目可以编译,但我无法修改资源,如我所说。

2 个答案:

答案 0 :(得分:1)

您是否正在为.NET 4编译?

您可能遇到无法正确扫描ResourceDictionaries的错误。

有人说你必须在App.xaml级别(在Application.Resources)级别添加ResourceDictionaries,并添加一个虚拟的默认样式。

这可能对您不起作用,因为您似乎在控件中添加资源。

http://blogs.windowsclient.net/rob_relyea/archive/2010/04/26/my-staticresource-reference-worked-differently-with-wpf-4-rc-than-it-does-with-wpf-4-rtm.aspx

Adding a Merged Dictionary to a Merged Dictionary

Trouble referencing a Resource Dictionary that contains a Merged Dictionary

http://connect.microsoft.com/VisualStudio/feedback/details/553528/defaultstylekey-style-not-found-in-inner-mergeddictionaries

答案 1 :(得分:0)

实际上使用此功能是有问题的。 =(

也许将来事情会变得更好,不知道是否会有所帮助,但你可以尝试不同的实现: WPF SharedResourceDictionary (但不保证它会起作用)

由于设计时出现问题,我放弃了使用SharedResourceDictionary,只有当项目100%完成后才会重新使用。