在 DataGridView 中的单元格内显示图标和字符串
我想在 DataGridView 的一个单元格中显示 2 个变量。
股票图标; Int 库存状态;
我已经看过 http://msdn.microsoft.com/en-us/ library/7tas5c80.aspx 但我认为它的方式很复杂,并且没有显示如何显示一个单元格中的变量。
我不需要编辑的能力,只需要显示两个变量。
有人可以给我提供一个小例子吗?
我使用 C# 4.0 工作,它是 System.Windows.Forms.DataGridView
I have 2 variable I would like to display in one cell of a DataGridView.
Icon stockIcon;
Int stockStatus;
I already looked at http://msdn.microsoft.com/en-us/library/7tas5c80.aspx But I think its way to complicated and don't show how to display to variables in one cell.
I don't need the ability to edit, only display the two variables.
Could someone provide me with a small example?
I work in C# 4.0 and its a System.Windows.Forms.DataGridView
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是我自己的解决方案。只需将列类型设置为 LagerStatusColumn 即可完成工作。
Here is my own solution. Just set the Column type to LagerStatusColumn and it gets the job done.