資源描述:
《客戶問卷調(diào)查程序》由會員上傳分享,免費在線閱讀,更多相關(guān)內(nèi)容在教育資源-天天文庫。
1、第四講客戶問卷調(diào)查程序教育部“十二五”職業(yè)教育國家規(guī)劃教材《VisualC#程序設(shè)計與軟件項目實訓(xùn)》電子工業(yè)出版社鄭偉譚恒松編著ISBN:9787121246128教材網(wǎng)站:http://www.zjcourse.com/visualc/目錄任務(wù):熟悉常用控件的使用任務(wù):設(shè)計客戶問卷調(diào)查程序任務(wù):功能拓展任務(wù):熟悉常用控件的使用RadioButton控件CheckBox控件ListBox控件ComboBox控件GroupBox控件RadioButton控件RadioButton是單選按鈕控件,多個RadioButton控件可以為一組,這一組內(nèi)的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控件通常稱為復(fù)選框,主要用于多項選擇。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("您對業(yè)
4、務(wù)員總體印象為:"+info);}ListBox控件ListBox控件通常稱為列表框控件,主要用于展示下拉列表。ListBox控件//左邊列表框選擇項移動到右邊列表框listBox2.Items.Add(listBox1.SelectedItem);listBox1.Items.Remove(listBox1.SelectedItem);//左邊所有項移動到右邊listBox2.Items.AddRange(listBox1.Items);listBox1.Items.Clear();ComboBox控件控件ComboBox中有一個文本框,可以在文本框輸入字符,其右側(cè)
5、有一個向下的箭頭,單擊此箭頭可以打開一個列表框,可以從列表框選擇希望輸入的內(nèi)容,通常稱為組合框控件。GroupBox控件GroupBox控件用于為其他控件提供可識別的分組。任務(wù):設(shè)計客戶問卷調(diào)查程序任務(wù):設(shè)計客戶問卷調(diào)查程序–代碼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"+"客戶對業(yè)務(wù)員印象:"+chkAnswer1.Text;}任務(wù):設(shè)計客戶問卷調(diào)查程序–代碼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;}任務(wù):設(shè)計客戶問卷調(diào)查程序–代碼MessageBox.Show(answers+"r"+"客戶需要:"+lstAnswer.SelectedItem.ToString()+"r"+"客戶最滿意:"+cboAnswer.Text,"問卷調(diào)查結(jié)果");}項目總結(jié)本項目主要涉及的控件:(1)RadioButton控件;(2)CheckBox控件;(3)ListBox控件;(4)ComboBox控件;(5)GroupBox控件。功能拓展客戶問卷調(diào)查程序較為簡單,讀者可以根據(jù)學(xué)習(xí)情況,對客戶問卷調(diào)查程序進行功能拓展