[ feedback] deepin-IDE,实现QMidSubWindow文档窗口显示的控件问题
Tofloor
poster avatar
deepin
2025-11-17 14:27
Author

系统版本

深度社区版(25.0.9)

开发套件

Qt 5.15.8

Qt Q****Widget

image.png

问题简述

QMidSubWindow实现的窗口,不显示最大化最小化关闭按钮的图标,如下图:

image.png

实现的代码块

#include 
#include 

// 创建 MDI 区域
QMdiArea *mdiArea = new QMdiArea(this);
setCentralWidget(mdiArea);

// 创建子窗口
QMdiSubWindow *subWindow = new QMdiSubWindow();
subWindow->setWidget(yourWidget);
mdiArea->addSubWindow(subWindow);
Reply Favorite View the author
All Replies

No replies yet