在C#中使用DataGridView綁定數(shù)據(jù)源的步驟如下:
// 創(chuàng)建數(shù)據(jù)源(示例為DataTable)
DataTable table = new DataTable();
table.Columns.Add("ID", typeof(int));
table.Columns.Add("Name", typeof(string));
// 添加數(shù)據(jù)到數(shù)據(jù)源
table.Rows.Add(1, "John");
table.Rows.Add(2, "Mary");
table.Rows.Add(3, "Tom");
// 將數(shù)據(jù)源綁定到DataGridView控件
dataGridView1.DataSource = table;
dataGridView1.AutoGenerateColumns = true;
注意:在綁定數(shù)據(jù)源之前,需要確保DataGridView控件的列已經(jīng)設置好,否則可能無法正確顯示數(shù)據(jù)。如果需要更改列的顯示方式,可以在代碼中修改DataGridView控件的相關屬性。