請幫助我在C#中的新手我的問題是我定義我的類lacry到customerList(姓名,地址和so..on)我的問題是我有一個形式的datagridview(custDGV),並試圖在這裏LAOD到它是我的代碼如何從一個List載入數據到datagridview <>
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();
}
當我運行它顯示爲空白。如果有些患者告訴我我需要做什麼
看看這個,看看如何綁定到詳細的datagridview http://msdn.microsoft.com/en-us/library/ fbk67b6z(v = vs.90).aspx – Nomad101 2013-05-12 05:51:14
customerList是一個列表對不對? –
jomsk1e
2013-05-13 04:33:36