我想将文本框绑定到数据源,以便我可以实现IDataErrorInfo。
我如何实现基本上做什么的功能
TextBoxClientRenewalDate.DataSource = contract.RenewalDate;
如果它存在,会这样做。
答案 0 :(得分:1)
我不确定你在寻找什么,但通常只需将值分配给Text
属性,如下所示:
TextBox1.Text = MyDataTable.Rows[0].Field<string>("SomeColumn");
我想你也可以使用DataBinder
对象:
//not positive here, but it should be close
TextBox1.Text = (string)DataBinder.Eval(MyDataTable, "SomeColumn");