FluentUI/example/qml/page/T_Image.qml

48 lines
1.3 KiB
QML
Raw Normal View History

2023-08-24 15:50:37 +08:00
import QtQuick 2.15
import QtQuick.Layouts 1.15
import QtQuick.Window 2.15
import QtQuick.Controls 2.15
import FluentUI 1.0
2023-08-26 17:20:30 +08:00
import "../component"
2023-06-28 18:07:39 +08:00
FluScrollablePage{
2024-03-09 15:35:48 +08:00
title: qsTr("Image")
2023-06-28 18:07:39 +08:00
FluArea{
Layout.fillWidth: true
2024-03-29 16:23:16 +08:00
Layout.preferredHeight: 260
padding: 10
2023-06-28 18:07:39 +08:00
Column{
spacing: 15
anchors{
verticalCenter: parent.verticalCenter
left:parent.left
}
FluImage{
width: 384
height: 240
source: "https://gitee.com/zhu-zichu/zhu-zichu/raw/74f075efe2f8d3c3bb7ba3c2259e403450e4050b/image/banner_4.jpg"
onStatusChanged:{
if(status === Image.Error){
2024-03-09 15:35:48 +08:00
showError(qsTr("The image failed to load, please reload"))
2023-06-28 18:07:39 +08:00
}
}
clickErrorListener: function(){
source = "https://gitee.com/zhu-zichu/zhu-zichu/raw/74f075efe2f8d3c3bb7ba3c2259e403450e4050b/image/banner_1.jpg"
}
}
}
}
CodeExpander{
Layout.fillWidth: true
2024-03-29 16:23:16 +08:00
Layout.topMargin: -6
2023-06-28 18:07:39 +08:00
code:'FluImage{
width: 400
height: 300
source: "https://gitee.com/zhu-zichu/zhu-zichu/raw/74f075efe2f8d3c3bb7ba3c2259e403450e4050b/image/banner_1.jpg"
}'
}
}