Winforms:ListView 中嵌入 NumericUpDown 控件
在我的 ListView 中说有 4 列(描述、单价、数量、总价)。
我想让第三列可编辑,并为“数量”列嵌入 NumericUpDown 控件。是否可以?当通过 NumericUpDown 控件更新数量时,总价格也会根据总价格 = 数量 * 每单位价格进行更新。
以上可以实现吗?
任何代码示例将不胜感激。
ObjectListView 对我的需求有用吗?
say in my ListView say with 4 columns (Description, Price Per Unit, Quantity, Total Price).
I would like to make the third column editable, and embedded NumericUpDown control for the Quantity column. Is it possible? And when the Quantity is updated via the NumericUpDown control, the Total Price is also being updated based on Total Price = Quantity * Price Per Unit.
is the above achievable?
any code samples would be greatly appreciated.
would ObjectListView be useful for my needs?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我没有尝试过,但我想不出任何不可能的原因。
这篇知识库文章 (KB320344) 展示了如何添加组合框,您应该能够针对大多数其他类型的控件调整代码:
http://support.microsoft.com/kb/320344
I haven't tried but I can't think of any reason why it wouldn't be possible.
This knowledge base article (KB320344) shows how to add a combobox and you should be able to adapt the code for most other kinds of controls:
http://support.microsoft.com/kb/320344