如果设置标志Qt.FramelessWindowHint的窗口会自动停止更新。
视频https://youtu.be/9LJyJWr1m9M
请帮忙解决问题。
UPD:
我的系统:linux x64
样本http://rghost.ru/69VBkk2sr的项目在项目中,您可以使用Qt.FramelessWindowHint取消注释该行,并且可以通过按下更改屏幕的颜色。
示例代码:
import QtQuick 2.3
import QtQuick.Controls 1.2
ApplicationWindow {
visible: true
// Try comment and uncomment next line
flags: Qt.FramelessWindowHint
width: 640
height: 480
color: marea.pressed ? "lightblue" : "orange"
MouseArea {
id: marea
anchors.fill: parent
}
}