ItemCount.qml 266 B

12345678910111213
  1. import QtQuick 2.6
  2. Widget {
  3. width: itemCountLabel.width
  4. height: itemCountLabel.height
  5. Text {
  6. id: itemCountLabel
  7. font.pixelSize: widgetProperties.fontPixelSize
  8. text: "Items:" + globalUtil.itemCount
  9. color: "white"
  10. }
  11. }