FluentUI/example/T_MediaPlayer.qml
朱子楚\zhuzi 36d7c714a5 update
2023-03-25 12:41:56 +08:00

33 lines
578 B
QML

import QtQuick
import QtQuick.Controls
import QtQuick.Layouts
import QtQuick.Window
import Qt5Compat.GraphicalEffects
import FluentUI
FluScrollablePage{
title:"MediaPlayer"
FluArea{
width: parent.width
height: 320
Layout.topMargin: 20
paddings: 10
ColumnLayout{
anchors{
verticalCenter: parent.verticalCenter
left:parent.left
}
FluMediaPlayer{
source:"http://clips.vorwaerts-gmbh.de/big_buck_bunny.mp4"
}
}
}
}