Transparent window
-
https://fbcdn-sphotos-h-a.akamaihd.net/hphotos-ak-xpa1/v/t35.0-12/10939702_1556293987960116_1857895721_o.jpg?oh=e93e41326dae7fe78469f86c82422521&oe=54C446AE&gda=1422175359_dedd565ef5e2187a514864fbd530d364 I am more confused then everything else on this planet, and even more embaressed
-
Quite strange. It is running but it is not shown in the taskbar. And if you remove the "--transparent" argument it shows as expected ?
It could be bug. It seems you are running it on Windows XP. It tried it on Linux, Ubuntu flavor.
Try creating it the other way.
Create a new project as,
File > New File Or Project > Application > Qt Quick Application
and then in main.qml, you will find Window as root element. Try setting opacity to it.
@
import QtQuick 2.4
import QtQuick.Window 2.2Window {
visible: true
opacity: 0.4
MainForm {
anchors.fill: parent
mouseArea.onClicked: {
Qt.quit();
}
}
}
@ -
It seems to b a bug then since it works on Linux. You can report it on "Qt bugs tracker":https://bugreports.qt.io. Mention the scenario, OS, Qt Version and possibly a small reproducible example.