0
点赞
收藏
分享

微信扫一扫

QDockWidget去掉标题栏

冶炼厂小练 2022-05-05 阅读 130
qt

//去掉标题栏

QWidget * titleBarWidget = this->titleBarWidget();

QWidget* lEmptyWidget = new QWidget();

this->setTitleBarWidget(lEmptyWidget );

delete titleBarWidget;

举报

相关推荐

0 条评论