- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
查看KDE等离体的来源,一些小部件声明了marginHints
属性,例如this:
property QtObject marginHints: QtObject {
property int left: Math.round(units.smallSpacing / 2)
property int top: Math.round(units.smallSpacing / 2)
property int right: Math.round(units.smallSpacing / 2)
property int bottom: Math.round(units.smallSpacing / 2)
}
最佳答案
看起来,QML具有比我想象的复杂得多的范围解析。不过,阅读文档(又称RTFM)会有所帮助。
https://doc.qt.io/qt-5/qtqml-documents-scope.html
根据该文章:
Component Scope
Each QML component in a QML document defines a logical scope. Each document has at least one root component, but can also have other inline sub-components. The component scope is the union of the object ids within the component and the component's root object's properties.
[...]
Component Instance Hierarchy
In QML, component instances connect their component scopes together to form a scope hierarchy. Component instances can directly access the component scopes of their ancestors.
关于c++ - 属性QtObject marginHints:QtObject {…},我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55128811/
查看KDE等离体的来源,一些小部件声明了marginHints属性,例如this: property QtObject marginHints: QtObject { prop
我是一名优秀的程序员,十分优秀!