- 1、本文档共12页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
第8章使用C#开发Windows数据库应用程序
;8.1 数据绑定; 第三个参数描述数据源中的数据成员。它是必须能转化为标量值的字符串文字,如使用DataSet时要根据表名称所选的列。
表8-1 可用于Binding类构造函数的第二个参数的类;8.1.1 简单数据绑定
简单数据绑定是指每个控件属性与数据源的单一元素之间的一对一关系。下面的例子演示简单数据绑定,将一组 TextBox 控件上的 Text 属性绑定到作为客户列表存储的 Customer 对象的属性。在控件上使用 DataBindings 集合添加简单数据绑定。
textBoxID.DataBindings.Add(Text, custList, CustomerID);
textBoxTitle.DataBindings.Add(Text, custList, ContactTitle);
textBoxLastName.DataBindings.Add(Text, custList, ContactName);
textBoxFirstName.DataBindings.Add(Text, custList, CompanyName);
textBoxAddress.DataBindings.Add(Text, custList, Address);
每个TextBox.Text都绑定到当前 Customer 对象,如同 BindingContext 进行维护一样。若要更改当前对象,可使用 BindingContext 递增或递减集合的 Position 属性。 ; 例如,通过按如下所示处理按钮的Click事件实现 Move Next 按钮。
private void buttonMoveNext_Click(object sender, System.EventArgs e) {
this.BindingContext[custList].Position++;
}
每当位置更改时,BindingContext 引发一个事件。
this.BindingContext[custList].PositionChanged +=
new System.EventHandler(customer_PositionChanged);
private void customer_PositionChanged(object sender, System.EventArgs e) {
textBoxPosition.Text = Record +
(this.BindingContext[custList].Position + 1)+ of + custList.Length;
}
;8.1.2 复杂数据绑定
复杂数据绑定指将控件绑定到集合(而不是将控件绑定到集合内的单个项)。下面的代码将 ComboBox 绑定到 State 对象的一个数组。
public struct State {
private string shortName, longName;
public State(string longName , string shortName) {
this.shortName = shortName ; this.longName = longName ;
}
public string ShortName { get { return shortName; } }
public string LongName { get { return longName; } }
}
private State[] States = new State[] {new State(Alabama,AL),
new State(Washington ,WA),}
comboBoxState.DataSource=States;
comboBoxState.DisplayMember=LongName;;8.2 数据源的类型
8.2.1 数组作为数据源
在大
文档评论(0)