标签 QML 类型
具有继承字体的样式文本标签。 更多...
导入语句 | import QtQuick.Controls |
继承 |
属性
- background : Item
- bottomInset : real
(since QtQuick.Controls 2.5 (Qt 5.12))
- implicitBackgroundHeight : real
(since QtQuick.Controls 2.5 (Qt 5.12))
- implicitBackgroundWidth : real
(since QtQuick.Controls 2.5 (Qt 5.12))
- leftInset : real
(since QtQuick.Controls 2.5 (Qt 5.12))
- rightInset : real
(since QtQuick.Controls 2.5 (Qt 5.12))
- topInset : real
(since QtQuick.Controls 2.5 (Qt 5.12))
详细描述
Label 扩展了 Text 以添加样式和 字体 继承。默认颜色和字体由样式指定。Label 还可以有可视的 背景 元素。
Label { text: "Label" }
您可以使用 Text 的属性来改变文本的外观,满足您的需求
Label { text: "Hello world" font.pixelSize: 22 font.italic: true }
另请参阅 自定义标签.
属性文档
bottomInset : real |
implicitBackgroundHeight : real |
此属性包含隐式背景高度。
该值等于 background ? background.implicitHeight : 0
。
此属性自 QtQuick.Controls 2.5 (Qt 5.12) 起引入。
另请参阅 隐式背景宽度.
implicitBackgroundWidth: real |
此属性保留隐式背景宽度。
值等于 background ? background.implicitWidth : 0
。
此属性自 QtQuick.Controls 2.5 (Qt 5.12) 起引入。
leftInset: real |
rightInset: real |
topInset: real |
© 2024 Qt 公司。此处包含的文档贡献属于各自所有者的版权。提供的文档受自由软件开发基金会发布的 GNU 自由文档许可证版本 1.3 条款许可。Qt 和相关商标是 Qt 公司在芬兰和/或其他国家/地区的商标。所有其他商标均为其各自所有者的财产。