绑定silverlight datagrid后显示很细的空白行 解决方案
1.datagrid如果是在xaml中写的,请检查 binding 中绑定的字段是否大写
2.绑定一个list<student> ,注意必须是属性才ok,如果是定义的public变量则不认。
能显示时student定义方式
public class Student { public string ID { get; set; } public string NAME { get; set; } public Student(int id, string name) { this.ID = id.ToString(); this.NAME = name; } }
不能显示时 student定义方式(即错误的定义方式)
public class Student { public string Id ="";public string Name="";public Student(int id, string name) { this.ID = id.ToString(); this.NAME = name; } }