摘要: 概要:将所有的VM在加载到Application的Static Resource中,然后在View中用标签指定。实现:1)采用特性指定要添加到StaticResource中的对象public class StaticResourceAttribute : Attribute { public string Key { get; set; } public StaticResourceAttribute(string key) { this.Key = key; } }2)从当前的程序集中,把所有标记了StaticResourceAttribute的VM加载到AppResource中public 阅读全文
posted @ 2011-06-08 11:27 jianyi 阅读(3368) 评论(3) 推荐(2) 编辑