FluentUI/example/T_MediaPlayer.qml

42 lines
755 B
QML
Raw Normal View History

2023-03-25 13:35:21 +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
2023-03-24 15:21:47 +08:00
FluScrollablePage{
2023-03-24 18:25:13 +08:00
title:"MediaPlayer"
2023-03-24 15:21:47 +08:00
2023-03-25 20:45:33 +08:00
onVisibleChanged: {
if(visible){
player.play()
}else{
player.pause()
}
}
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-25 20:45:33 +08:00
id:player
2023-03-25 14:23:16 +08:00
source:"http://clips.vorwaerts-gmbh.de/big_buck_bunny.mp4"
2023-03-24 15:21:47 +08:00
}
}
}
}