欢迎来到天天文库
浏览记录
ID:27107437
大小:398.01 KB
页数:18页
时间:2018-12-01
《客户问卷调查程序》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、第四讲客户问卷调查程序教育部“十二五”职业教育国家规划教材《VisualC#程序设计与软件项目实训》电子工业出版社郑伟谭恒松编著ISBN:9787121246128教材网站:http://www.zjcourse.com/visualc/目录任务:熟悉常用控件的使用任务:设计客户问卷调查程序任务:功能拓展任务:熟悉常用控件的使用RadioButton控件CheckBox控件ListBox控件ComboBox控件GroupBox控件RadioButton控件RadioButton是单选按钮控件,多个RadioButton控件可以为一组,这一组内的RadioButton控
2、件只能有一个被选中,即按钮之间相互制约。RadioButton控件privatevoidbtnOK_Click(objectsender,EventArgse){if(radioButton1.Checked==true){MessageBox.Show("您的性别为:"+radioButton1.Text);}if(radioButton2.Checked==true){MessageBox.Show("您的性别为:"+radioButton2.Text);}}CheckBox控件CheckBox控件通常称为复选框,主要用于多项选择。CheckBox控件privat
3、evoidbtnOK_Click(objectsender,EventArgse){stringinfo="";if(checkBox1.Checked==true){info=checkBox1.Text;}if(checkBox2.Checked==true){info=info+checkBox2.Text;}if(checkBox3.Checked==true){info=info+checkBox3.Text;}if(checkBox4.Checked==true){info=info+checkBox4.Text;}MessageBox.Show("您对业
4、务员总体印象为:"+info);}ListBox控件ListBox控件通常称为列表框控件,主要用于展示下拉列表。ListBox控件//左边列表框选择项移动到右边列表框listBox2.Items.Add(listBox1.SelectedItem);listBox1.Items.Remove(listBox1.SelectedItem);//左边所有项移动到右边listBox2.Items.AddRange(listBox1.Items);listBox1.Items.Clear();ComboBox控件控件ComboBox中有一个文本框,可以在文本框输入字符,其右侧
5、有一个向下的箭头,单击此箭头可以打开一个列表框,可以从列表框选择希望输入的内容,通常称为组合框控件。GroupBox控件GroupBox控件用于为其他控件提供可识别的分组。任务:设计客户问卷调查程序任务:设计客户问卷调查程序–代码privatevoidbtnOK_Click(objectsender,EventArgse){stringanswers="";if(rbtnAnswer1.Checked==true){answers="客户性别:"+rbtnAnswer1.Text;}if(rbtnAnswer2.Checked==true){answers="客户性别
6、:"+rbtnAnswer2.Text;}if(chkAnswer1.Checked==true){answers=answers+"r"+"客户对业务员印象:"+chkAnswer1.Text;}任务:设计客户问卷调查程序–代码if(chkAnswer2.Checked==true){answers=answers+chkAnswer2.Text;}if(chkAnswer3.Checked==true){answers=answers+chkAnswer3.Text;}if(chkAnswer4.Checked==true){answers=answers+
7、chkAnswer4.Text;}任务:设计客户问卷调查程序–代码MessageBox.Show(answers+"r"+"客户需要:"+lstAnswer.SelectedItem.ToString()+"r"+"客户最满意:"+cboAnswer.Text,"问卷调查结果");}项目总结本项目主要涉及的控件:(1)RadioButton控件;(2)CheckBox控件;(3)ListBox控件;(4)ComboBox控件;(5)GroupBox控件。功能拓展客户问卷调查程序较为简单,读者可以根据学习情况,对客户问卷调查程序进行功能拓展
此文档下载收益归作者所有