我怎样才能在列表框中拥有这样的项目?
我应该使用列表框吗?
我说的是样式控件和宽度控件。我怎样才能拥有这些定制项目?
谢谢你!
Should I even be using a ListBox?
I'm talking about the Style control, and the Width control. How can I accomplish having these custom items?
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当然,使用 ListBox.DrawMode 属性。实现 DrawItem 事件来绘制您喜欢的任何内容,它不必只是文本。 Pen.DashStyle 在这里很有趣。
Sure, use the ListBox.DrawMode property. Implement the DrawItem event to draw anything you like, it doesn't have to be just text. The Pen.DashStyle is interesting here.
我认为您正在尝试在列表框中进行自定义绘图。在这种情况下,以下SO问题/评分最高的答案应该有所帮助:
C# 可以在列表框中显示图像吗?
I think you're trying to do custom drawing in a listbox. In which case the following SO question/ top-rated answer should help:
C# Can I display images in a list box?