數(shù)據(jù)綁定與DataGridView控件.ppt_第1頁
數(shù)據(jù)綁定與DataGridView控件.ppt_第2頁
數(shù)據(jù)綁定與DataGridView控件.ppt_第3頁
數(shù)據(jù)綁定與DataGridView控件.ppt_第4頁
數(shù)據(jù)綁定與DataGridView控件.ppt_第5頁
已閱讀5頁,還剩23頁未讀, 繼續(xù)免費(fèi)閱讀

下載本文檔

版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)

文檔簡(jiǎn)介

1、第七章,數(shù)據(jù)綁定與DataGridView控件,2,本章單詞,datagridview(deitgrdvju: 數(shù)據(jù)網(wǎng)格控件) datasource(deits:s 數(shù)據(jù)源) displaymember(displeimemb 顯示值的字段) valuemember(vljumemb 值的字段) allow(lau 允許, 許可) user(ju:z 用戶, 使用者) canfocus(kn, knfuks 是否可以接收焦點(diǎn)) columncount(klmkaunt 列數(shù)) currentcell(krntsel 當(dāng)前活動(dòng)單元格) sortorder(s:t:d 是否進(jìn)行排序) with(w

2、i 隨著) canceledit(knsledit 放棄更改),3,1、創(chuàng)建并執(zhí)行命令對(duì)象SqlCommand分哪幾步?,回顧1,/創(chuàng)建命令對(duì)象 SqlCommand cmd = new SqlCommand(); /設(shè)置命令文本 cmd.CommandText = sqlStr; /執(zhí)行命令 SqlDataReader rd = cmd.ExecuteReader(); object obj = cmd.ExecuteScalar(); int rows = cmd. ExecuteNonQuery();,4,回顧2,題目:以下代碼是否有問題?, 1 SqlDataReader rd = c

3、md.ExecuteReader(); 2 3 while(rd.Read() 4 /讀取數(shù)據(jù)1 5 6 SqlDataReader rd2 = cmd.ExecuteReader(); 7 while(rd2.Read() 8 /讀取數(shù)據(jù)2 9 10 rd.Close(); 11 rd2.Close(); ,打開rd2前,必須將之前的關(guān)閉,因?yàn)樗且元?dú)占的方式與數(shù)據(jù)庫交互的。否則就會(huì)報(bào)異常。,5,回顧3,DataReader 與 DataAdapter 有什么異同? DataAdapter 用哪個(gè)方法填充到數(shù)據(jù)集,DataReader 與 DataAdapter 都可以用來讀取數(shù)據(jù) Data

4、Reader 讀取數(shù)據(jù)時(shí),時(shí)時(shí)與數(shù)據(jù)庫保持通信 DataAdapter 一次性讀取數(shù)據(jù)后,將數(shù)據(jù)保存在內(nèi)存中,方便以后讀取。(斷開式連接),adapter.Fill( ds );,6,預(yù)習(xí)檢查,本章學(xué)習(xí)哪個(gè)控件? 數(shù)據(jù)綁定是什么意思? 可以數(shù)據(jù)綁定的控件有哪些?,DataGridView控件,控件與數(shù)據(jù)源綁定,ComboBox,ListBox,DataGridView,7,本章任務(wù),菜品管理系統(tǒng),8,本章目標(biāo),掌握數(shù)據(jù)綁定的概念 掌握對(duì)組合框的數(shù)據(jù)綁定 熟練使用DataGridView控件 熟練掌握DataGridView控件的常用屬性、方法和事件 通過完整示例熟練使用ADO.NET來操作數(shù)據(jù)

5、庫,9,什么是數(shù)據(jù)綁定,數(shù)據(jù)綁定是控件與數(shù)據(jù)源的綁定。 ComboBox、ListBox適用于單列數(shù)據(jù)綁定 DataGridView適用于多行多列數(shù)據(jù)綁定,控件:ListBox、ComboBox、DataGridView,10,ComboBox和ListBox數(shù)據(jù)綁定屬性,11,7-1數(shù)據(jù)綁定,7.1.1、數(shù)據(jù)綁定的介紹, for (int i = 0; i ds.Tables0.Rows.Count; i+) string quYu = ds.Tables0.Rowsisname.ToString(); this.listBox1.Items.Add(quYu); , /綁定數(shù)據(jù)源 this

6、.listBox1.DataSource = ds.Tables0. DefaultView; /指定要顯示的字段名稱 this.listBox1.DisplayMember = sname; ,數(shù)據(jù)源,顯示的字段,12,7-1數(shù)據(jù)綁定,ComboBox中的幾個(gè)重要屬性:, boBox1.SelectedIndex.ToString(); boBox1.Text; boBox1.SelectedValue.ToString(); ,獲得當(dāng)前選中項(xiàng)的索引,獲得當(dāng)前選中項(xiàng)的文本值,獲得當(dāng)前選中項(xiàng)的值,13,7-2為什么使用 DataGridView,怎么樣整體顯示DataSet中的數(shù)據(jù),14,7-

7、2DataGridView控件,強(qiáng)大而靈活地顯示數(shù)據(jù),輕松定義控件外觀,像 Excel 表格一樣方便,一行代碼實(shí)現(xiàn)數(shù)據(jù)綁定,可視化操作,DataGridView控件的優(yōu)點(diǎn),15,7-2使用 DataGridView 顯示數(shù)據(jù),dataGridView1.DataSource = ds.Tables“0”;,實(shí)現(xiàn)步驟 - 添加窗體控件 - 設(shè)置DataGridView 控件和其中各列的屬性 - 設(shè)置DataSource 屬性,指定數(shù)據(jù)源,演示示例1:使用 DataGridView 顯示數(shù)據(jù),16,7-2 DataGridView 控件重要屬性,在其中編輯 DataGridView 列的屬性,17

8、,列的主要屬性小結(jié),18,DataGridView常用方法和事件,19,綜合用例,創(chuàng)建一個(gè)簡(jiǎn)單的菜品管理系統(tǒng) 1、添加菜品類型 2、添加菜品 3、菜品查詢(使用DataGridView顯示) 4、更新菜品信息,20,綜合用例數(shù)據(jù)庫、表,FoodType(菜品類型表),Food (菜品表),數(shù)據(jù)庫:FoodDB,21,綜合示例,效果展示,22,技能點(diǎn),1、數(shù)據(jù)源設(shè)定 2、列的屬性設(shè)定 3、更新數(shù)據(jù),獲得當(dāng)前選中行 4、相應(yīng)驗(yàn)證,23,總結(jié)1,數(shù)據(jù)綁定是: 使用ComboBox綁定數(shù)據(jù)源需要使用6個(gè)主要屬性,控件與數(shù)據(jù)源綁定,綁定數(shù)據(jù):DataSource、DisplayMember、ValueM

9、ember 獲取數(shù)據(jù):SelectedIndex、Text、SelectedValue,24,總結(jié)2,DataGridView 綁定數(shù)據(jù)要使用哪個(gè)屬性?,dataGridView. DataSource,DataGridView 樣式設(shè)置、屬性、事件使用,dataGridView. CurrentRow.Cell索引值.Value.ToString(),點(diǎn)擊當(dāng)前行,獲得當(dāng)前行的某些列的值要用到哪個(gè)屬性?,dataGridView. CurrentCell.Value.ToString(),25,家庭作業(yè),作業(yè)1、將菜單管理系統(tǒng)增加如下功能: 1、雙擊主鍵列(菜品編號(hào))彈出提示消息: 2、操作完成后,給出相應(yīng)提示,26,家庭作業(yè),作業(yè)2 將菜單管理系統(tǒng)更新功能改造為: 設(shè)置除了主鍵列,其他列設(shè)置ReadOnl

溫馨提示

  • 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
  • 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
  • 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。

最新文檔

評(píng)論

0/150

提交評(píng)論