2010-09-16 117 views
1

List A = new List(); (「蘋果」);
A.Add(「Apple」);
A.Add(「香蕉」);
A.Add(「菠蘿」);如何獲取datagridView的列表顯示內容而不僅僅是長度

dataGridView.DataSource = a;

結果:是列表中每個項目的長度而不是項目本身的長度。
怎樣使DataGridView的,而不是顯示長度的字符串。

+1

http://stackoverflow.com/questions/479329/how-to-bind-a-string-list-to-a-datagrid – 2011-02-07 20:37:25

回答

0

嘗試使用List來實際獲取字符串值,而不是用char [] .Count();來表示它們。

例如:

List<string> A = new List<string>(); 
A.Add("Apple"); 
A.Add("Banana"); 
A.Add("Pineapple"); 

dataGridView.ItemSource = A; 
+0

另外,還要注意一個事實,即你的DataGrid,你使用了'dataGridView.DataSource'。你需要使用'dataGridView.ItemSource' – 2016-11-21 23:22:44

相關問題