2018-02-07 10:00:10 -08:00
|
|
|
import QtQuick 2.4
|
2019-05-06 03:15:55 -07:00
|
|
|
import QtQuick.Controls 2.4
|
2018-02-07 10:00:10 -08:00
|
|
|
|
|
|
|
ApplicationWindow {
|
|
|
|
flags: Qt.MaximumSize
|
|
|
|
Component.onCompleted: visible = true
|
|
|
|
|
|
|
|
Image {
|
|
|
|
id: image1
|
|
|
|
objectName: "displayImage"
|
|
|
|
sourceSize.height: 768
|
|
|
|
sourceSize.width: 1024
|
|
|
|
antialiasing: true
|
|
|
|
anchors.fill: parent
|
|
|
|
}
|
2019-05-06 03:15:55 -07:00
|
|
|
}
|
2018-02-07 10:00:10 -08:00
|
|
|
|
2019-05-06 03:15:55 -07:00
|
|
|
/*##^## Designer {
|
|
|
|
D{i:0;autoSize:true;height:480;width:640}
|
2018-02-07 10:00:10 -08:00
|
|
|
}
|
2019-05-06 03:15:55 -07:00
|
|
|
##^##*/
|