标签: qt qml qtquick2 state-machine
是否有任何记录的PropertyChanges实例执行顺序?
PropertyChanges
例如,如果有State之类的,
State
State { name: "LOADED" PropertyChanges { target: elem1; width: 10 } PropertyChanges { target: elem2; width: 10 } }
是否有任何特定的顺序,首先要设置元素宽度?