DataGridView Winform 自动插入序数列(技巧)
我想找到一些解决这个问题的技巧。
我有像这样的产品表
(uuid,名称)
和一个 datagridview 来显示此信息( dataGridView.DataSouce = 在运行时分配的产品)
我的问题是我想在 dataGridView 上有“否”列,它将如下所示
没有|名称
1 |产品A
2 |产品B
3 | ProductC
我现在所做的是在我的产品模型上创建一个“否”字段,然后循环遍历所有行并为其赋值。
我认为这不是一个好的解决方案。
希望任何人都可以提出更好的解决方案。
谢谢,
I want to get some trick for this problem.
I have my table like this
Product (uuid, Name)
and one datagridview to display this information ( dataGridView.DataSouce = Products which is assign on runtime)
My problem is that I want to have "No" column on dataGridView which will show like below
No | Name
1 | ProdctA
2 | ProductB
3 | ProductC
What I do right now is create a "No" field on my product Model, and loop through all the row and assign value to it.
I think this is not a good solution.
Hope anyone can suggest better solution.
Thanks,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我一直没找到窍门,但我研究过好几次了。以下是有关此问题的一些评论。
I have never found a trick, but I have researched several times. Following are some comments regarding this issue.