mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2024-11-01 00:27:32 +08:00
57 lines
1.1 KiB
QML
57 lines
1.1 KiB
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
import QtQuick.Window
|
|
import FluentUI
|
|
|
|
FluScrollablePage{
|
|
|
|
title:"MediaPlayer"
|
|
leftPadding:10
|
|
rightPadding:10
|
|
bottomPadding:20
|
|
|
|
onVisibleChanged: {
|
|
if(visible){
|
|
player.play()
|
|
}else{
|
|
player.pause()
|
|
}
|
|
}
|
|
|
|
FluArea{
|
|
Layout.fillWidth: true
|
|
height: 320
|
|
Layout.topMargin: 20
|
|
paddings: 10
|
|
ColumnLayout{
|
|
anchors{
|
|
verticalCenter: parent.verticalCenter
|
|
left:parent.left
|
|
}
|
|
FluMediaPlayer{
|
|
id:player
|
|
source:"http://clips.vorwaerts-gmbh.de/big_buck_bunny.mp4"
|
|
}
|
|
}
|
|
}
|
|
|
|
FluArea{
|
|
Layout.fillWidth: true
|
|
height: 68
|
|
Layout.topMargin: 20
|
|
paddings: 10
|
|
|
|
FluButton{
|
|
text:"跳转到视频播放器窗口"
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
onClicked:{
|
|
FluApp.navigate("/media",{source:"http://clips.vorwaerts-gmbh.de/big_buck_bunny.mp4"})
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|