Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以在 Qt/QML 中使用某些与分辨率无关的测量单位?
我想让文本、按钮、边距、装饰矩形的大小...在桌面(视网膜和非视网膜)、android(dpi、xspi ...)和 iOS(视网膜和非视网膜)中相等
由于您可以访问元素中的所有父组件,因此您可以将所有宽度/高度基于父高度。例如
Rectangle { width: parent.width / 2 anchors.centerIn: parent }