欢迎来到天天文库
浏览记录
ID:18714313
大小:281.50 KB
页数:16页
时间:2018-09-20
《人机交互用户界面设计实验报告》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、实验一图形用户界面的设计一实验目的和要求1)熟悉图形用户界面的设计原则2)利用一种设计工具完成图形化的用户界面设计二实验内容与步骤(一)实验内容:利用常用的设计工具(VC/VB/Delphi/PB等)完成一个通用图形用户界面设计,要遵循界面设计的一般原则(一致性、快捷方式、提供错误处理),注意颜色的使用,学会使用图标、按钮、屏幕布局、菜单和对话框的设计(二)实验步骤1.设计多个对话框,完成填表输入界面的设计,合理使用图标、按钮、颜色;2.设计不同形式的菜单,完成对不同对话框的调用;3.提供简单的错误处理、联机帮助三界面示例1、登录界面2、主界面
2、163代码:登录界面:usingSystem;usingSystem.Drawing;usingSystem.Collections;usingSystem.ComponentModel;usingSystem.Windows.Forms;usingSystem.Data;16usingSystem.Data.OleDb;//Downloadbyhttp://www.codefans.netnamespaceWealthMIS.user{//////Form1的摘要说明。///publicclassLogi
3、n:System.Windows.Forms.Form{privateSystem.Windows.Forms.ButtonbtClose;privateSystem.Windows.Forms.TextBoxpassword;privateSystem.Windows.Forms.Labellabel3;privateSystem.Windows.Forms.Labellabel2;privateSystem.Windows.Forms.Labellabel1;privateSystem.Windows.Forms.ComboBoxcombo
4、Name;//////必需的设计器变量。///privateSystem.ComponentModel.Containercomponents=null;privateSystem.Windows.Forms.ButtonbtSure;privateOleDbConnectionoleConnection1=null;publicLogin(){////Windows窗体设计器支持所必需的//InitializeComponent();////TODO:在InitializeComponent调用后添加任何
5、构造函数代码//}//////清理所有正在使用的资源。///protectedoverridevoidDispose(booldisposing){if(disposing){if(components!=null){components.Dispose();16}}base.Dispose(disposing);}#regionWindows窗体设计器生成的代码//////设计器支持所需的方法-不要使用代码编辑器修改///此方法的内容。///privatevoidIn
6、itializeComponent(){System.ComponentModel.ComponentResourceManagerresources=newSystem.ComponentModel.ComponentResourceManager(typeof(Login));this.btClose=newSystem.Windows.Forms.Button();this.btSure=newSystem.Windows.Forms.Button();this.password=newSystem.Windows.Forms.TextB
7、ox();this.label3=newSystem.Windows.Forms.Label();this.label2=newSystem.Windows.Forms.Label();this.label1=newSystem.Windows.Forms.Label();this.comboName=newSystem.Windows.Forms.ComboBox();this.SuspendLayout();////btClose//this.btClose.FlatStyle=System.Windows.Forms.FlatStyle.
8、Popup;this.btClose.ForeColor=System.Drawing.Color.Black;this.btClose.Locati
此文档下载收益归作者所有