[项目6简历系统数据库应用.ppt

  1. 1、本文档共44页,可阅读全部内容。
  2. 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
[项目6简历系统数据库应用

3. TextBox与Label控件的数据绑定 此类控件的数据绑定的方法是把要获取的数据显示在 “Text”属性中。通常使用以下两种代码编写方法实现数据 绑定: (1)使用数据集中表的字段直接绑定,如下面的代码: label1.DataBindings.Add(Text, dataset.Tables[0], stuid); textBox1.DataBindings.Add(Text, dataset.Tables[0], stuname); 6.1.3 数据绑定 Evaluation only. Created with Aspose.Slides for .NET 3.5 Client Profile 5.2.0.0. Copyright 2004-2011 Aspose Pty Ltd. Evaluation only. Created with Aspose.Slides for .NET 3.5 Client Profile 5.2.0.0. Copyright 2004-2011 Aspose Pty Ltd. (2)使用BindingSource类型的对象实现数据绑定,如 下面的代码: BindingSource bindingsource = new BindingSource(); bindingsource.DataSource = dataset.Tables[student]; label1.DataBindings.Add(Text, bindingsource, stuid); textBox1.DataBindings.Add(“Text”, bindingsource, “stuname); 6.1.3 数据绑定 Evaluation only. Created with Aspose.Slides for .NET 3.5 Client Profile 5.2.0.0. Copyright 2004-2011 Aspose Pty Ltd. Evaluation only. Created with Aspose.Slides for .NET 3.5 Client Profile 5.2.0.0. Copyright 2004-2011 Aspose Pty Ltd. 4. ListBox和ComboBox控件的数据绑定 这种类型的控件要绑定的属性有3个:“DataSource”( 显示数据集)、“DisplayMember”(显示的数据集中的字 段)、“ValueMember”(读取该控件时实际使用值) 。 使用ListBox实现数据绑定,常用以下两种代码编写方 法实现数据绑定: 6.1.3 数据绑定 Evaluation only. Created with Aspose.Slides for .NET 3.5 Client Profile 5.2.0.0. Copyright 2004-2011 Aspose Pty Ltd. Evaluation only. Created with Aspose.Slides for .NET 3.5 Client Profile 5.2.0.0. Copyright 2004-2011 Aspose Pty Ltd. (1)使用数据集中表的字段直接绑定,如下代码: listBox1.DataSource = dataset.Tables[0]; listBox1.DisplayMember dataset.Tables[0].Columns[1].ToString(); listBox1.ValueMember = dataset.Tables[0].Columns[0].ToString(); (2)使用BindingSource对象实现数据绑定,如下代码: BindingSource bindingsource = new BindingSource(); bindingsource.DataSource = dataset.Tables[student]; listBox1.DataSource = bindingsource; listBox1.DisplayMember = dataset.Tables[0].Columns[1].ToString(); listBox1.ValueMember = dataset.Tables[0].Columns[1].ToString();

文档评论(0)

wendan118 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档