Advertisement
Guest User

Untitled

a guest
Oct 26th, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. Button {
  2. id: btn
  3. width: 250
  4. height: 100
  5. anchors.centerIn: parent
  6. text: "A button"
  7. style: ButtonStyle {
  8. background: Image {
  9. fillMode: Image.PreserveAspectFit
  10. source: "btn_state.png"
  11. }
  12. }
  13. }
  14.  
  15. style: ButtonStyle {
  16. background: Image {
  17. fillMode: Image.PreserveAspectFit
  18. source: control.pressed ? "btn_pressed.png" :
  19. (control.hovered ? "btn_hovered.png" : "btn_state.png")
  20. }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement