04 2009 档案

摘要:Application应用框架思考(三) 之[插件机制] /// <summary> /// 单例类 /// //为子功能提供主框架信息接口 类 /// </summary> public class ApplicationProvider : IApplicationProvider, IConnectable { public ApplicationProvider() { } private static ApplicationProvider instance = new Applicat... 阅读全文
posted @ 2009-04-17 22:06 sqlite例子 阅读(169) 评论(0) 推荐(0)
摘要:Application应用框架思考(二) 之[数据访问层]public interface IDataAccessLayer { void BeginTransaction(); void Close(); void CommitTransaction(); string ConnectionString { get; set; } void Dispose(); void Execute(); System.Data.IDataReader ExecuteDataReader(string... 阅读全文
posted @ 2009-04-14 23:19 sqlite例子 阅读(146) 评论(0) 推荐(0)
摘要:Application应用框架思考(一) /// <summary> /// 应用程序的框架管理类 /// </summary> public interface IApplication : IServiceContainer { /// <summary> /// //数据访问服务层 /// </summary> DataAccessLayerBaseClass DataLayer { get; } /// <summary> /// //用户登陆服务 /// <... 阅读全文
posted @ 2009-04-09 20:08 sqlite例子 阅读(133) 评论(0) 推荐(0)
摘要:OutLookQQ风格控件C#示例public partial class OutLookExUI : UserControl { public InnerOutLookTreeClass OutLookTree = new InnerOutLookTreeClass(); public Panel MainPanel = new Panel(); public OutLookExUI() { InitializeComponent(); this.MainPanel.Visible = ... 阅读全文
posted @ 2009-04-09 19:55 sqlite例子 阅读(236) 评论(0) 推荐(0)