0
當前我有一個qml應用程序,每個圖像都有特定的頁邊距。它們在屏幕的特定寬度上完美顯示。但是,如果屏幕放大,它會變得混亂並散落。因爲邊距設置爲特定的數字。什麼是qml中這個問題的更好的解決方案?我試圖設置position: relative
但這沒有奏效。屏幕較大,QML按鈕和圖像的固定頁邊距
例如:
我們有兩個按鈕
Button1 {
anchors {
right: parent.right
rightMargin: 175
bottom: parent.bottom
bottomMargin: 95
}
}
Button2 {
iconNext: true
anchors {
right: parent.right
rightMargin: 53
bottom: parent.bottom
bottomMargin: 95
}
}
這兩個按鈕看起來精湛我的屏幕上。當他們相互分離時,在更大的屏幕上變得糟糕透頂。
什麼是解決方案