LCDNumber.qml 475 B

12345678910111213141516171819202122232425262728
  1. import QtQuick 2.11
  2. Item {
  3. id:root
  4. anchors.fill: parent
  5. anchors.margins: 5
  6. property int fontsize:100
  7. property string fontcolor:"black"
  8. property string text:"0.000"
  9. FontLoader{
  10. id: fontlcd
  11. source: "qrc:/font/DS-DIGI.TTF"
  12. }
  13. Text {
  14. id:lcdnumber
  15. anchors.centerIn: parent
  16. color:fontcolor
  17. text: root.text
  18. font.family: fontlcd.name
  19. font.pixelSize: root.fontsize
  20. }
  21. }