摘要:
namespace Feng.FramWorkDesign{ public class IOCContainer { private Dictionary<Type, object> mInstance = new Dictionary<Type, object>(); public void Re 阅读全文
摘要:
namespace Feng.FramWorkDesign{ public class Singleton<T> where T: Singleton<T> { private static T mInstance; public static T MInstance { get { if (mIn 阅读全文
摘要:
数据变更事件namespace Feng.FramWorkDesign{ public class BindableProperty<T> where T: IEquatable<T> { private T mValue = default(T); public T Value { get { r 阅读全文