加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
FileWindow.qml 1.28 KB
一键复制 编辑 原始数据 按行查看 历史
世玉轩 提交于 2020-06-19 09:31 . init push myir hmi v2.0 gui
import QtQuick 2.1
import QtQuick.Window 2.2
import Qt.labs.folderlistmodel 2.1
SystemWindow {
id: fileWindow
title: "file"
property int adaptive_width: Screen.desktopAvailableWidth
property int adaptive_height: Screen.desktopAvailableHeight
width: adaptive_width
height: adaptive_height
TitleLeftBar{
id: leftBar
titleIcon: "images/wvga/back_icon_nor.png"
titleName: qsTr("文件浏览器")
titleNameSize: 20
titleIconWidth:120
titleIconHeight: 30
onLeftBarClicked: {
fileWindow.close()
// info_timer.stop()
}
}
TitleRightBar{
anchors{
top: parent.top
right: parent.right
rightMargin: 10
}
}
FileBrowser {
id: imageFileBrowser
folder:"file:///"
anchors.fill: parent
width: adaptive_width
height: adaptive_height/*/1.16*/
anchors{
top: parent.top
topMargin: 50
}
// Component.onCompleted: fileSelected.connect(content.openImage)
}
// MouseArea {
// anchors.fill: parent
// onClicked: imageFileBrowser.show()
// }
Component.onCompleted:imageFileBrowser.show()
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化