我似乎无法使用 Qt::WindowFlags 添加关闭按钮

发布于 2024-11-17 21:11:42 字数 460 浏览 0 评论 0原文

当我将 QMdiSubWindow 插入 QMdiArea 时,将调用以下代码:

Qt::WindowFlags flags;

flags = Qt::Widget | Qt::WindowMinimizeButtonHint | Qt::WindowTitleHint;

if(closeable)
{
    qDebug("Window is closeable. %x", Qt::WindowCloseButtonHint);
    flags |= Qt::WindowCloseButtonHint;
}

由于某种原因,即使 closeable 为 true,关闭按钮也不会显示在小部件的标题栏上。

这是将小部件插入 QMdiArea 的调用。

mdi->addSubWindow(widget, flags);

有什么建议吗?

I have the following code that is called when I insert a QMdiSubWindow into a QMdiArea:

Qt::WindowFlags flags;

flags = Qt::Widget | Qt::WindowMinimizeButtonHint | Qt::WindowTitleHint;

if(closeable)
{
    qDebug("Window is closeable. %x", Qt::WindowCloseButtonHint);
    flags |= Qt::WindowCloseButtonHint;
}

For some reason, even when closeable is true, the closebutton won't display on the widget's titlebar.

This is the call to insert the widget into the QMdiArea.

mdi->addSubWindow(widget, flags);

Any suggestions?

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

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

发布评论

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

评论(1

靖瑶 2024-11-24 21:11:42

我发现尝试使用 sdk 中包含的窗口标志示例对尝试正确获取标志有很大帮助。

C:\QtSDK\Examples\4.7\widgets\windowflags\

I found that playing around with the window flags example included with the sdk was a lot of help when trying to get the flags correct.

C:\QtSDK\Examples\4.7\widgets\windowflags\

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