如何将数组显示到一个 DataGridView 中
我有一个方法,它返回某种数据,其中之一是让我们说 FirstClass 类型数组。 FirstClass 包含两个属性。 我可以将此字段(我的意思是所有数组成员的 FirstClass 两个属性)显示到 DatagridView One Cell 中吗?
I have a Method, which returs Some kind of data, One of them is lets Say FirstClass typed Array. FirstClass contains two properties.
Can I display this field (I mean FirstClass two properties for all array members) into DatagridView One Cell??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将所需的两个属性的值连接到第一个 GridView 列
如何在 GRid View asp.net C# 的一列中显示两个属性
You can concatenate the value of the two properties you need into the first GridView column
How to show two properties in one column of GRid View asp.net C#