亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

如何在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
颍上县| 五家渠市| 宜良县| 靖江市| 泰州市| 龙游县| 安图县| 南通市| 响水县| 巴里| 鄂托克旗| 灌南县| 长子县| 金塔县| 新蔡县| 新化县| 墨玉县| 新宁县| 邢台县| 甘洛县| 来安县| 陆丰市| 福贡县| 临湘市| 息烽县| 南宫市| 辉南县| 新余市| 确山县| 西华县| 蒙阴县| 梅州市| 石门县| 桃源县| 宜阳县| 八宿县| 綦江县| 清远市| 屯留县| 长沙县| 乡宁县|