摘要:
概要:将所有的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 阅读全文