随笔分类 -  Windows Form

摘要:在WinForm中遍历代码: private void button1_Click(object sender, EventArgs e) { foreach (Control control in Controls) { if (control is CheckBox) { ((CheckBox)control).Checked = false; } if (control is TextBox... 阅读全文
posted @ 2011-03-07 04:38 Jon.Zhiwei@hotmail.com 阅读(297) 评论(0) 推荐(0)
摘要:只是日常开发项目中,涉及总结,而项目是基于三层开发。IDataAccess数据访问层接口:using System;using System.Collections.Generic;using System.Text;using System.Data.Common;using Microsoft.Practices.EnterpriseLibrary.Common;using Microsoft.Practices.EnterpriseLibrary.Data;using System.Collections;using System.Data;namespace IDataAccess{ 阅读全文
posted @ 2011-03-01 01:38 Jon.Zhiwei@hotmail.com 阅读(558) 评论(0) 推荐(0)