FluentUI/example/T_MediaPlayer.qml

36 lines
699 B
QML
Raw Normal View History

2023-03-24 15:21:47 +08:00
import QtQuick 2.15
import QtQuick.Controls 2.15
import QtQuick.Layouts 1.15
import QtQuick.Window 2.15
import QtGraphicalEffects 1.15
import FluentUI 1.0
FluScrollablePage{
2023-03-24 18:25:13 +08:00
title:"MediaPlayer"
2023-03-24 15:21:47 +08:00
FluArea{
width: parent.width
2023-03-24 18:25:13 +08:00
height: 320
2023-03-24 15:21:47 +08:00
Layout.topMargin: 20
paddings: 10
ColumnLayout{
anchors{
verticalCenter: parent.verticalCenter
left:parent.left
}
FluMediaPlayer{
2023-03-24 18:25:13 +08:00
source:{
console.debug("-------------->")
return "http://clips.vorwaerts-gmbh.de/big_buck_bunny.mp4"
}
2023-03-24 15:21:47 +08:00
}
}
}
}