VolumeControlPanel.qml 337 B

12345678910111213141516171819
  1. import QtQuick 2.0
  2. import DMusic 1.0
  3. import "components"
  4. FloatingPanel {
  5. id: root
  6. VolumeSlider {
  7. id: _volume
  8. height: root.height - 69
  9. anchors.horizontalCenter: root.horizontalCenter
  10. anchors.bottom: root.bottom
  11. anchors.bottomMargin: 20
  12. value: AudioPlayer.volume
  13. onSeek: AudioPlayer.volume = value
  14. }
  15. }