在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
下面是一个使用面向对象的思想设计出来的应用程序向导框架,模拟OutLook配置邮箱。 其中有三个比较关键的类,一个是向导窗体要收集的信息封装成的类MailInfo,一个是所有向导窗体都要继承的窗体基类MailInfoBase,还有一个就是最关键的类,向导控制类MailInfoController。 有了基类MailInfoBase,设计一个子类窗体非常简单,只需从MailInfoBase类中派生一个新窗体,设计完用户界面之后重写其UpdateInfo()方法即可。 所有代码(VS2008版)如下,通俗易懂,不再做说明: 项目MailControl,输出为类库,其中 MailInfo.cs
using System;
MailInfoBase.csusing System.Collections.Generic; using System.Linq; using System.Text; namespace MailControl }
using System;
MailInfoBase.designer.csusing System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace MailControl
namespace MailControl
MailController.cs}
using System;
program.cs
using System.Collections.Generic; using System.Linq; using System.Text; using System.Collections; using System.Windows.Forms; namespace MailControl
using System;
using System.Collections.Generic; using System.Linq; using System.Windows.Forms; namespace MailControl } |
请发表评论