在c ++ Qt中调用这个元素是什么?

时间:2016-07-01 03:26:32

标签: c++ qt user-interface

我正在为我的程序制作一个GUI,并且正在尝试弄清楚这个组件将被调用的内容。

Image

有谁知道这会被称为什么或者我怎么能达到这种效果?

3 个答案:

答案 0 :(得分:3)

从Qt Designer工具箱窗口向您的ui表单添加QListWidget { color:white; border:1px solid transparent; border-radius:10px; padding:0px; background:#F6911B; show-decoration-selected: 1; } QListWidget::item{ border-top:1px solid #E98919; padding: 15px; } QListWidget::item:hover { border-top:1px solid #E98919; background-color: #F6911B; color:white; } QListWidget::item:selected:!active { border-top:1px solid #E98919; background-color:white; color:#F6911B; } 。然后单击它右键然后单击changeStylesheet ...然后粘贴它:

QListView

看起来像这样:

screenshot of the styled list

要了解样式表与d3.selectAll('.nv-slice') .on('click', function(d) { console.log(d.data.label); }); 的关系,请参阅http://doc.qt.io/qt-5/stylesheet-examples.html#customizing-qlistview

答案 1 :(得分:1)

QListWidget是一个与您发布的图片类似的列表框。

enter image description here

答案 2 :(得分:0)

这是一个附有QActions的QMenu。首先,您创建一个QAction,连接相关的插槽,并附加到QMenu。然后将菜单附加到QWidget(或其子类)