最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

C#數(shù)據(jù)綁定(DataBinding)簡單實現(xiàn)方法

 更新時間:2015年08月20日 12:20:41   作者:我心依舊  
這篇文章主要介紹了C#數(shù)據(jù)綁定(DataBinding)簡單實現(xiàn)方法,以簡單實例形式簡單分析了C#實現(xiàn)數(shù)據(jù)綁定與讀取的方法,具有一定參考借鑒價值,需要的朋友可以參考下

本文實例講述了C#數(shù)據(jù)綁定(DataBinding)簡單實現(xiàn)方法。分享給大家供大家參考。具體實現(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();
  }
 }
}

希望本文所述對大家的C#程序設(shè)計有所幫助。

相關(guān)文章

最新評論

绥德县| 高尔夫| 江口县| 阜平县| 寻乌县| 南平市| 文成县| 奉节县| 奉节县| 布尔津县| 吉水县| 柘城县| 天长市| 神木县| 榆树市| 彩票| 昌乐县| 阜城县| 嘉禾县| 鹿泉市| 鹰潭市| 郁南县| 沙河市| 科技| 卢湾区| 东兴市| 呼伦贝尔市| 盐边县| 武强县| 会东县| 连南| 山西省| 荆州市| 万载县| 巴楚县| 澄江县| 濮阳市| 乌拉特前旗| 双城市| 临夏县| 富宁县|