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
|
2023-03-24 20:44:38 +08:00
|
|
|
|
import Qt5Compat.GraphicalEffects
|
2023-03-24 15:21:47 +08:00
|
|
|
|
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 20:44:38 +08:00
|
|
|
|
source:"http://clips.vorwaerts-gmbh.de/big_buck_bunny.mp4"
|
2023-03-24 15:21:47 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|