ContentPage QML Type
一个自定义的页面组件,用于展示内容和标题。. More...
Import Statement: | import FluentUI.Controls 1.0 |
Properties
- bottomInset : int
- bottomPadding : int
- implicitBackgroundHeight : bool
- implicitBackgroundWidth : bool
- implicitFooterHeight : int
- implicitFooterWidth : int
- implicitHeaderHeight : int
- implicitHeaderWidth : int
- leftInset : int
- leftPadding : int
- rightInset : int
- rightPadding : int
- spacing : int
- title : string
- topInset : int
- topPadding : int
Detailed Description
ContentPage 组件是一个自定义的页面布局,继承自 QtQuick.Controls 的 `Page`。它提供了标题、背景和内边距设置,支持自定义内容的显示。
示例用法:
ContentPage { title: "页面标题" // 在此处添加您的内容 }
Property Documentation
bottomInset : int |
leftInset : int |
rightInset : int |
topInset : int |
页面背景的边距。
bottomPadding : int |
leftPadding : int |
rightPadding : int |
topPadding : int |
内容的内边距。
implicitFooterHeight : int |
implicitFooterWidth : int |
implicitHeaderHeight : int |
implicitHeaderWidth : int |
标题和页脚的隐式宽度和高度。
implicitBackgroundHeight : bool |
implicitBackgroundWidth : bool |
背景的隐式宽度和高度。
spacing : int |
标题与内容之间的间隔。
title : string |
页面的标题文本。