中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

如何在c# winform中實現數據綁定

c#
小樊
89
2024-08-31 00:35:44
欄目: 編程語言

在C# Winform中實現數據綁定,可以使用Windows Forms數據綁定框架

  1. 首先,創建一個Winform項目并添加一個數據源。可以是數據庫、Web服務或其他數據源。這里我們以一個簡單的List<T>為例,創建一個包含數據的類:
public class Person
{
    public int Id { get; set; }
    public string Name { get; set; }
    public int Age { get; set; }
}
  1. 在主窗體(Form)中添加一個BindingSource組件和一個DataGridView控件。將BindingSource組件與DataGridView控件關聯,以便在運行時顯示數據。

  2. 在主窗體的代碼中,初始化List<Person>并將其綁定到BindingSource組件:

using System;
using System.Collections.Generic;
using System.Windows.Forms;

namespace WindowsFormsApp1
{
    public partial class Form1 : Form
    {
        private BindingSource _bindingSource = new BindingSource();

        public Form1()
        {
            InitializeComponent();

            // 初始化數據
            List<Person> people = new List<Person>
            {
                new Person {Id = 1, Name = "張三", Age = 25},
                new Person {Id = 2, Name = "李四", Age = 30},
                new Person {Id = 3, Name = "王五", Age = 35}
            };

            // 將數據綁定到 BindingSource
            _bindingSource.DataSource = people;

            // 將 BindingSource 綁定到 DataGridView
            dataGridView1.DataSource = _bindingSource;
        }
    }
}

現在,當你運行程序時,DataGridView控件會顯示List<Person>中的數據。

除了DataGridView控件外,還可以將數據綁定到其他控件,例如TextBoxComboBox等。只需將控件的DataBindings屬性設置為相應的數據源即可。例如,將一個TextBox控件與Person類的Name屬性綁定:

textBox1.DataBindings.Add("Text", _bindingSource, "Name");

這樣,當你在DataGridView中選擇不同的行時,TextBox控件會自動顯示所選行的Name屬性值。

0
上虞市| 洞口县| 启东市| 乌什县| 新竹县| 钦州市| 皮山县| 宁波市| 伽师县| 正镶白旗| 桂平市| 阜康市| 定南县| 保山市| 抚顺县| 和龙市| 张家港市| 信丰县| 许昌县| 建宁县| 乌拉特后旗| 应用必备| 潞城市| 买车| 丰台区| 铜川市| 麻城市| 上栗县| 霸州市| 哈巴河县| 柯坪县| 嵊州市| 葵青区| 微山县| 萍乡市| 合水县| 辽阳县| 河源市| 明星| 休宁县| 麻城市|