奥特QT DDS 插件库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

MessageDisplay.qml 393B

5 kuukautta sitten
12345678910111213141516
  1. // 自定义消息显示组件
  2. Rectangle {
  3. property string message
  4. property int messageIndex
  5. width: parent.width
  6. height: 40
  7. color: messageIndex % 2 === 0 ? "#f0f0f0" : "#ffffff"
  8. Text {
  9. anchors.fill: parent
  10. anchors.margins: 5
  11. text: "#" + messageIndex + ": " + message
  12. verticalAlignment: Text.AlignVCenter
  13. }
  14. }