Qt:QListWidget项目之间的分隔线?

发布于 2024-12-09 18:56:06 字数 35 浏览 0 评论 0原文

我找不到任何方法在列表中的项目之间划线。我错过了什么吗?

I can't find any way to put a line between items in my list. Am I missing something?

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

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

发布评论

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

评论(2

耶耶耶 2024-12-16 18:56:06

样式表是最简单的,例如:

myListWidget->setStyleSheet( "QListWidget::item { border-bottom: 1px solid black; }" );

您需要查看一些 样式表文档

A style sheet would be easiest, for example:

myListWidget->setStyleSheet( "QListWidget::item { border-bottom: 1px solid black; }" );

You'll want to look at some of the style sheet documentation

对不⑦ 2024-12-16 18:56:06

对已接受答案的 2 项改进:

  1. 使用小部件的调色板在不同系统上实现统一的外观。
  2. 重新设计 item 时需要恢复 item:selected 样式,

例如这样:

const auto & palette = tableWidget.palette();
tableWidget.setStyleSheet(QString("QListWidget::item { border-bottom: 1px solid %1; } QListWidget::item:selected { background-color: %2; color: %3; }")
    .arg(palette.midlight().color().name(),
         palette.highlight().color().name(),
         palette.highlightedText().color().name()));

在这里您可以看到分隔线和选择颜色符合小部件的默认样式:

输入图片描述这里

2 improvements to the accepted answer:

  1. Use the color palette of the widget to achieve a uniform look across different systems.
  2. It is necessary to restore the item:selected style when restyling item

E.g. like this:

const auto & palette = tableWidget.palette();
tableWidget.setStyleSheet(QString("QListWidget::item { border-bottom: 1px solid %1; } QListWidget::item:selected { background-color: %2; color: %3; }")
    .arg(palette.midlight().color().name(),
         palette.highlight().color().name(),
         palette.highlightedText().color().name()));

Here you can see that the separator lines and selection color fit the default style of the widget:

enter image description here

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