DataGridView数据绑定任意对象的数组

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了DataGridView数据绑定任意对象的数组相关的知识,希望对你有一定的参考价值。

Stupidly simple -- just one pitfall: class to be bound must have Get/Set methods for reflection to discover. Which is annoying when it comes to client side classes auto generated from WSDL.
  1. Foo[] foos = new Foo[2];
  2. DataGridView1.DataSource = foos;
  3.  
  4.  
  5. //This works.
  6. public class FooGood
  7. {
  8. public string Bar { get; set; }
  9. public string Baz { get; set; }
  10. }
  11. //This Doesn't
  12. public class FooBad
  13. {
  14. public string Bar;
  15. public string Baz;
  16. }

以上是关于DataGridView数据绑定任意对象的数组的主要内容,如果未能解决你的问题,请参考以下文章

将对象数组绑定到 DataGridView 控件

我想用C#中的datagrid控件做一个删除行(点击按钮删除datagrid中的所指定的任意一行)

如何将锯齿状数组绑定到 DataGridView?

WinForm DataGridView双向数据绑定

C# 怎么把数组中的数据添加到datagridview中

C#中datagridview如何绑定ArrayList集合?