摘要: namespace Feng.FramWorkDesign{ public class IOCContainer { private Dictionary<Type, object> mInstance = new Dictionary<Type, object>(); public void Re 阅读全文
posted @ 2023-08-24 17:50 Trigger_F 阅读(8) 评论(0) 推荐(0) 编辑
摘要: namespace Feng.FramWorkDesign{ public class Singleton<T> where T: Singleton<T> { private static T mInstance; public static T MInstance { get { if (mIn 阅读全文
posted @ 2023-08-24 17:49 Trigger_F 阅读(25) 评论(0) 推荐(0) 编辑
摘要: 数据变更事件namespace Feng.FramWorkDesign{ public class BindableProperty<T> where T: IEquatable<T> { private T mValue = default(T); public T Value { get { r 阅读全文
posted @ 2023-08-24 14:35 Trigger_F 阅读(7) 评论(1) 推荐(0) 编辑