删除 Flex 中的网格标题翻转

发布于 2024-08-26 14:42:36 字数 40 浏览 10 评论 0原文

有没有办法在保持可排序标题的同时消除 Flex 中的网格标题翻转?

Is there a way to remove the grid header rollover in flex while still maintaining a sortable header?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

李不 2024-09-02 14:42:36

要删除翻转颜色,一个技巧是将翻转颜色设置为与样式表中的网格标题颜色或 MXML 中的内联颜色相同:

DataGrid {
    headerColors: #0079FF, #0079FF;     
}

这是您想要实现的目标吗?

To remove the rollover color one trick would be to set the rolloever color to be the same as the grid header color in your style sheet or inline in your MXML:

DataGrid {
    headerColors: #0079FF, #0079FF;     
}

Is this what you are trying to achieve?

就此别过 2024-09-02 14:42:36

简短的回答是肯定的。我没有一个很好的例子给你,但是你需要扩展一些类来覆盖翻转颜色,最好的办法是找出标题翻转颜色是如何分配的,并给它一个 0 的 alpha 值。

The short answer is yes. I don't have a good example for you, but you are going to need to extend some classes in order to override the rollover color, best bet is to find out how the header rollover color is assigned and give it an alpha of 0.

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