WPF:将列表视图项的背景颜色绑定到对象的十六进制字符串属性
嘿。 我有一个对象,它有一个名为“BackgroundColor”的字符串属性。 该字符串是颜色的十六进制表示。 我无法改变这个对象。
我将这些对象的集合绑定到 listView。 我想做的是将列表视图行的背景绑定到行中显示的对象的BackgroundColor 属性。
最好的方法是什么?
Hey. I have an object that has a string property called BackgroundColor. This string is the hexidecimal representation of a color. I cannot change this object.
I'm binding a collection of these objects to a listView. What I would like to do is bind the background of the listview's row to the BackgroundColor property of the object that is displayed in the row.
What is the best way to to this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要使用 Style 将 ListViewItem 的背景绑定到该行的项目。 该项目是 ListViewItem 的默认 DataContext,因此这应该很简单:
您将绑定到 BackgroundColor,而不是绑定到整个项目,但它应该与上面类似。 您必须使用带有前缀“#”的绑定转换器,这是内置 BrushConverter 将其解析为十六进制的信号。
You'll want to use a Style to bind the Background of ListViewItem to the item for the row. The item is the default DataContext of the ListViewItem so this should be straightforward:
Instead of binding to the whole item you'll bind to the BackgroundColor, but it should be similar to the above. You have have to use a converter with the binding to prefix a "#", this is the signal to the built-in BrushConverter to parse it as hex.
我认为使用 IValueConverter 是合适的解决方案。 您可以制作一个 HexConverter 将字符串十六进制值转换为颜色。 该链接应该可以帮助您入门。
I think using a IValueConverter is the appropriate solution. You could make a HexConverter that converts the string hex value to Color. That link should get you started.