Advertisement
people720

Untitled

Apr 5th, 2021
34
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. Window {
  2. id:_root
  3. width: 640
  4. height: 480
  5. visible: true
  6. title: qsTr("Hello World")
  7.  
  8.  
  9. ListView{
  10. id:_audioList
  11. clip: true
  12.  
  13. width: 250
  14. height: 250
  15. anchors.right: _root.right
  16.  
  17. model:AudioModel{
  18. list: audioWork
  19. }
  20. delegate:Button{
  21. id:_playAudioButton
  22. property var _pathToAudio: model.audioPath
  23. width: _audioList.width
  24. text: model.audioName
  25. onClicked: {
  26. audioWork.playAudio(_pathToAudio);
  27.  
  28. }
  29. }
  30.  
  31. }
  32.  
  33. }
  34.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement