我在頁面加載事件中動態地在datagridview中添加數據。但是我收到一個錯誤,指出索引超出範圍。 (「必須爲非負且小於DataGridView中collection.parameter名的大小。」)指數超出範圍。必須是非負數,並且小於datagridview中collection.parameter名稱的大小?
以下是代碼:
dataGridView1.Rows.Add();
dataGridView1.Rows[0].Cells[0].Value = "Basic";
dataGridView1.Rows[0].Cells[1].Value = "Basic";
dataGridView1.Rows[1].Cells[0].Value = "PDALLW";
dataGridView1.Rows[1].Cells[1].Value = "Professional Development Allow";
dataGridView1.Rows[2].Cells[0].Value = "BPAllw";
dataGridView1.Rows[2].Cells[1].Value = "Business Promotion Allowance";
您在這裏使用3行,但只添加一行。也許這是問題? – 2012-08-09 13:11:23
這是綁定到DataGrid的好鏈接。 http://stackoverflow.com/questions/5809816/datagrid-binding-in-wpf – Omzig 2012-08-09 13:13:12