C#數(shù)據(jù)綁定(DataBinding)簡單實(shí)現(xiàn)方法
更新時(shí)間:2015年08月20日 12:20:41 作者:我心依舊
這篇文章主要介紹了C#數(shù)據(jù)綁定(DataBinding)簡單實(shí)現(xiàn)方法,以簡單實(shí)例形式簡單分析了C#實(shí)現(xiàn)數(shù)據(jù)綁定與讀取的方法,具有一定參考借鑒價(jià)值,需要的朋友可以參考下
本文實(shí)例講述了C#數(shù)據(jù)綁定(DataBinding)簡單實(shí)現(xiàn)方法。分享給大家供大家參考。具體實(shí)現(xiàn)方法如下:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace AppForm
{
public partial class Form3 : Form
{
Order order = null;
public Form3()
{
InitializeComponent();
order = new Order()
{
Id = 1,
Customer = "123",
OrderDate = DateTime.Now
};
InitUI();
}
void InitUI()
{
textBox1.DataBindings.Add(new Binding("Text", order, "Id"));
textBox2.DataBindings.Add(new Binding("Text", order, "Customer"));
textBox3.DataBindings.Add(new Binding("Text", order, "OrderDate"));
}
void UpdateUI()
{
textBox1.DataBindings[0].ReadValue();
textBox2.DataBindings[0].ReadValue();
textBox3.DataBindings[0].ReadValue();
}
private void button1_Click(object sender, EventArgs e)
{
order.Id = 2;
order.Customer = "456";
order.OrderDate = DateTime.Now;
UpdateUI();
}
}
}
希望本文所述對(duì)大家的C#程序設(shè)計(jì)有所幫助。
相關(guān)文章
C# winform 模擬鍵盤輸入自動(dòng)接入訪問網(wǎng)絡(luò)的實(shí)例
本篇文章主要介紹了C# winform 模擬鍵盤輸入自動(dòng)接入訪問網(wǎng)絡(luò),有興趣的可以了解一下。2016-11-11
C#使用XSLT實(shí)現(xiàn)xsl、xml與html相互轉(zhuǎn)換
這篇文章介紹了C#使用XSLT實(shí)現(xiàn)xsl、xml與html相互轉(zhuǎn)換的方法,文中通過示例代碼介紹的非常詳細(xì)。對(duì)大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下2022-06-06

