2016年6月27日
摘要: WinForm:客户端应用程序; 布局:StartPosition --开始位置 Manual --无任何位置设置,根据Location的位置开始 CenterScreen --屏幕居中显示,覆盖Location的效果 WindowsDefaultLocation --默认位置,覆盖Location 阅读全文
posted @ 2016-06-27 15:43 爱意红沉 阅读(199) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using adoceshi.model; using adoceshi.dataopration; namespace adoceshi { class ... 阅读全文
posted @ 2016-06-27 15:37 爱意红沉 阅读(563) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; using 属性扩展.Model; using 属性扩展.DataOperation; namespace 属性扩展 { class Program { static void Main(st... 阅读全文
posted @ 2016-06-27 15:35 爱意红沉 阅读(174) 评论(0) 推荐(0) 编辑
摘要: 数据模型和数据访问类:数据模型: 使用面向对象中的封装特性,将数据表中的行数据组成一个同样结构的对象,来单独使用; 数据访问类: 将某一个表的全部增删改查操作的方法写进去,方便统一管理和调用; 数据模型和数据访问类单独创建两个文件件单独放置,方便查看;注意:单独创建的问题件命名空间会自动更改,调用时 阅读全文
posted @ 2016-06-27 15:32 爱意红沉 阅读(233) 评论(0) 推荐(0) 编辑