本文實(shí)例講述了C#數(shù)據(jù)綁定(DataBinding)簡(jiǎn)單實(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ì)有所幫助。
新聞熱點(diǎn)
疑難解答
圖片精選