ResourceDictionary + StaticResource替代纯System.XAML,没有PresentationFramework

时间:2010-08-01 11:19:52

标签: .net

我想享受ResourceDictionary + StaticResource功能,但无需加载PresentationFramework - 纯System.Xaml。

我非常容易地将Resources属性定义为字典,但我需要一种方法来引用那里的项目,即我需要StaticResource之类的东西。我用Reflector看了它,它似乎依赖于WindowsBase和PresentationFramework中的东西。

我想知道是否有另一种方式,而不是滑入PresentationFramework。我也理解,我可以复制粘贴来自PresentationFramework的所有相关代码,只留下最低限度来支持所需的功能 - 这是我的最后手段。

以下是我现在所拥有的:

using System.Collections.Generic;
using System.Windows.Markup;
using System.Xaml;

namespace ConsoleApplication1
{
  [ContentProperty("Items")]
  public class XamlDictionary<TKey, TValue> : Dictionary<TKey, TValue>
  {
    public ICollection<KeyValuePair<TKey, TValue>> Items
    {
      get { return this; }
    }
  }

  public class A
  {
    private XamlDictionary<string, int> m_resources;
    public XamlDictionary<string, int> Resources 
    {
      get
      {
        if (m_resources == null)
        {
          m_resources = new XamlDictionary<string, int>();
        }
        return m_resources;
      }
      set { m_resources = value; }
    }
    public int Value { get; set; }
  }

  class Program
  {
    static void Main(string[] args)
    {
      var a = (A)XamlServices.Load("A.xaml");
    }
  }
}

<?xml version="1.0" encoding="utf-8" ?>
<l:A xmlns:scg="clr-namespace:System.Collections.Generic;assembly=mscorlib"
     xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
     xmlns:sys="clr-namespace:System;assembly=mscorlib"
     xmlns:l="clr-namespace:ConsoleApplication1;assembly=ConsoleApplication1"
     Value="15">
  <l:A.Resources>
    <sys:Int32 x:Key="ssss">10</sys:Int32>
  </l:A.Resources>
</l:A>

到目前为止,一切都很好。现在,我希望更改Xaml,以便A.Value引用A.Resources["ssss"]值,这是我需要StaticResource替代方法的地方。

1 个答案:

答案 0 :(得分:0)

您可能需要创建一个“StaticResourceExtention”作为标记的一部分=)