WPF GridViewItem 控件的默认前景色是什么?
在 WPF 中,如果使用 ListView 控件并将视图设置为 GridView,则项目的默认前景色为深蓝色。实际使用的画笔值是多少?我研究了 ListViewitem、GridViewItem 等的默认模板,但我无法弄清楚前景色的设置位置。我将不胜感激任何指点。多谢。
In WPF, if you use a ListView control with the View set to a GridView, the default Foreground color of the items are dark blue. What is the actual brush value used for it? I've looked into the default templates of ListViewitem, GridViewItem, etc. but I couldn't figure out where the Foreground color is set. I'd appreciate any pointer. Thanks a lot.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这可能是
#FF042271
,它可以在默认的 GridView-Style 中找到。默认样式可以在在 MSDN 上下载,点击第二段中的链接。
That's probably
#FF042271
, which is found in the default GridView-Style.The default styles can be downloaded on MSDN, follow the link in the second paragraph.