我似乎在圈子里跑来跑去,并且在过去几个小时里一直这样做。
我想从一个字符串数组中填充datagridview。我已经读过它不可能直接了,我需要创建一个将字符串保存为公共属性的自定义类型。所以我上了课:
public class FileName
{
private string _value;
public FileName(string pValue)
{
_value = pValue;
}
public string Value
{
get
{
return _value;
}
set { _value = value; }
}
}
这是容器类,它只是一个具有字符串值的属性。我现在想要的是当我将其数据源绑定到List时,该字符串将出现在datagridview中。
我也有这个方法,BindGrid(),我想填充datagridview。这是:
private void BindGrid()
{
gvFilesOnServer.AutoGenerateColumns = false;
//create the column programatically
DataGridViewTextBoxColumn colFileName = new DataGridViewTextBoxColumn();
DataGridViewCell cell = new DataGridViewTextBoxCell();
colFileName.CellTemplate = cell; colFileName.Name = "Value";
colFileName.HeaderText = "File Name";
colFileName.ValueType = typeof(FileName);
//add the column to the datagridview
gvFilesOnServer.Columns.Add(colFileName);
//fill the string array
string[] filelist = GetFileListOnWebServer();
//try making a List<FileName> from that array
List<FileName> filenamesList = new List<FileName>(filelist.Length);
for (int i = 0; i < filelist.Length; i++)
{
filenamesList.Add(new FileName(filelist[i].ToString()));
}
//try making a bindingsource
BindingSource bs = new BindingSource();
bs.DataSource = typeof(FileName);
foreach (FileName fn in filenamesList)
{
bs.Add(fn);
}
gvFilesOnServer.DataSource = bs;
}
最后,问题是:字符串数组填充正常,列表创建正常,但我在datagridview中得到一个空列。我也试过datasource = list&lt;&gt;直接,而不是= bindingsource,仍然没有。
我真的很感激你的建议,这让我很疯狂。
答案 0 :(得分:72)
使用BindingList并设置DataPropertyName - 列的属性。
尝试以下方法:
...
private void BindGrid()
{
gvFilesOnServer.AutoGenerateColumns = false;
//create the column programatically
DataGridViewCell cell = new DataGridViewTextBoxCell();
DataGridViewTextBoxColumn colFileName = new DataGridViewTextBoxColumn()
{
CellTemplate = cell,
Name = "Value",
HeaderText = "File Name",
DataPropertyName = "Value" // Tell the column which property of FileName it should use
};
gvFilesOnServer.Columns.Add(colFileName);
var filelist = GetFileListOnWebServer().ToList();
var filenamesList = new BindingList<FileName>(filelist); // <-- BindingList
//Bind BindingList directly to the DataGrid, no need of BindingSource
gvFilesOnServer.DataSource = filenamesList
}
答案 1 :(得分:12)
可能会迟到但对将来有用。如果您不需要设置单元格的自定义属性,只关注标题文本和单元格值,那么此代码将帮助您
public class FileName
{
[DisplayName("File Name")]
public string FileName {get;set;}
[DisplayName("Value")]
public string Value {get;set;}
}
然后您可以将List作为数据源绑定为
private void BindGrid()
{
var filelist = GetFileListOnWebServer().ToList();
gvFilesOnServer.DataSource = filelist.ToArray();
}
有关详细信息,请访问此页面Bind List of Class objects as Datasource to DataGridView
希望这会对你有所帮助。
答案 2 :(得分:7)
我知道这已经过时了,但这让我感到困惑了一段时间。列表中对象的属性必须是实际的“属性”,而不仅仅是公共成员。
public class FileName
{
public string ThisFieldWorks {get;set;}
public string ThisFieldDoesNot;
}
答案 3 :(得分:3)
您可以使用dataTable而不是创建新的Container类。
DataTable dt = new DataTable();
dt.Columns.Add("My first column Name");
dt.Rows.Add(new object[] { "Item 1" });
dt.Rows.Add(new object[] { "Item number 2" });
dt.Rows.Add(new object[] { "Item number three" });
myDataGridView.DataSource = dt;
您可以在此处找到有关此问题的更多信息:http://psworld.pl/Programming/BindingListOfString
答案 4 :(得分:1)
使用DataTable有效,如user927524所述。 您也可以通过手动添加行来完成此操作,这不需要添加特定的包装类:
List<string> filenamesList = ...;
foreach(string filename in filenamesList)
gvFilesOnServer.Rows.Add(new object[]{filename});
无论如何,感谢user927524清除这种奇怪的行为!!