1. Rectangle {
    2. id:startime
    3. height:35
    4. width:200
    5. z: 9999999999 //层级
    6. anchors{
    7. left: startimeL.right
    8. leftMargin: 30
    9. top: parent.top
    10. topMargin: 0
    11. }
    12. color:"#f0f0f0"
    13. MouseArea{
    14. anchors.fill: parent
    15. onClicked: {
    16. startimeEdit.visible=true
    17. }
    18. }
    19. }