QToolbar的句柄是什么类型的组件?

时间:2018-11-02 03:29:40

标签: c++ qt

QToolBar有一个句柄(用红色标记):

enter image description here

用作手柄的实际组件是什么?

1 个答案:

答案 0 :(得分:3)

reject()的{​​{3}}显示手柄是通过以下方式绘制的:

catch

source code的文档中说:

  

QToolBar opt.rect = style->subElementRect(QStyle::SE_ToolBarHandle, &opt, this); if (opt.rect.isValid()) style->drawPrimitive(QStyle::PE_IndicatorToolBarHandle, &opt, &p, this); QStyle::PE_IndicatorToolBarHandle


如果要使用样式表更改句柄的外观,则QStyle::PrimitiveElement36部分显示:

  

使用Qt Stylesheets Reference子控件设置手柄(用于移动工具栏)的样式。

::handle

The handle of a toolbar.