WPF GridViewItem 控件的默认前景色是什么?

发布于 2024-11-05 23:28:33 字数 142 浏览 0 评论 0原文

在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

桜花祭 2024-11-12 23:28:33

这可能是 #FF042271,它可以在默认的 GridView-Style 中找到。

<Style x:Key="{x:Static GridView.GridViewStyleKey}"
       TargetType="{x:Type ListView}">
    <!-- ... -->
    <Setter Property="Foreground"
            Value="#FF042271"/>

默认样式可以在在 MSDN 上下载,点击第二段中的链接。

That's probably #FF042271, which is found in the default GridView-Style.

<Style x:Key="{x:Static GridView.GridViewStyleKey}"
       TargetType="{x:Type ListView}">
    <!-- ... -->
    <Setter Property="Foreground"
            Value="#FF042271"/>

The default styles can be downloaded on MSDN, follow the link in the second paragraph.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文