Windows操作系统任务栏中不可见“子窗口”

时间:2019-05-18 10:42:42

标签: c++ qt qml

请考虑以下测试代码导入QtQuick 2.12 导入QtQuick.Window 2.12 导入QtQuick.Controls 2.3

ApplicationWindow
{
    visible: true
    width: 640
    height: 480
    title: qsTr("App window")

    Window
    {
        title: qsTr("inner window")
        visible: true;
    }
}

在Linux操作系统(Linux lukasz-vb 4.15.0-43-generic #46-Ubuntu SMP Thu Dec 6 14:45:28 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux,LXDE GE)上,两个窗口在任务栏中均可见:

enter image description here

在Windows 10操作系统上,我只能在任务栏中看到App window。由于内部的一个“不存在”,即使它是可见的并且可以使用,也无法在两个窗口之间进行alt + tab。

除了主窗口之外,Windows操作系统是否需要在代码内进行其他显示?

0 个答案:

没有答案