我将对象列表绑定到Winform DataGridView。这工作正常,并为我的对象上的每个属性都有一列。我现在已经覆盖了基于属性输出文本的对象上的“ToString”。我现在想要更改我的DataGridView,以便它有一个绑定到我的对象的“ToString”属性的列。这是否可能,因为到目前为止我还没有办法做到这一点。
答案 0 :(得分:0)
据我所知,绑定适用于属性,因此您需要在类中创建属性,这将返回ToString()
的结果:
public class Person
{
public string Name { get; set; }
public int Age { get; set; }
public string Text { get { return ToString(); } }
public override string ToString()
{
return String.Format("{0}, {1} years", Name, Age);
}
}
这里有一种强制网格不为除Text
属性之外的任何内容创建列的方法:
grid.Columns.Add(new DataGridViewTextBoxColumn() {DataPropertyName = "Text", HeaderText = "Custom ToString value"});
grid.AutoGenerateColumns = false;
结合:
var people = new List<Person>()
{
new Person() {Name = "A", Age = 20},
new Person() {Name = "B", Age = 30},
};
grid.DataSource = people;
答案 1 :(得分:0)
我设法通过以下链接解决了这个问题:Binding List Of String
解决方案是包装每个字符串,以便绑定机制知道要绑定的内容。