0
我需要幫助填充DataGridView
。當我調試時,我可以看到它有記錄,但它們沒有顯示在DataGridView
中。這裏是我的代碼(請注意,我是C#中的新手):將數據從List <>加載到datagridview中customerlist
private void listCustomer_Frm_Load(object sender, EventArgs e)
{
DataGridView custDGV = new DataGridView();
customerList = CustomerDB.GetListCustomer();
custDGV.DataSource = customerList;
cm = (CurrencyManager)custDGV.BindingContext[customerList];
cm.Refresh();
}
要麼是這樣,要麼@Salsero已經在某個表單的某個DataGridView中,只需要填充它而不是創建一個新的 – joshuahealy 2013-05-13 03:21:51