ApplicationWindowStyle QML Type

Provides custom styling for ApplicationWindow . 更多...

导入语句: import QtQuick.Controls.Styles 1.4
Since: Qt 5.4
继承:

QtObject

特性

详细描述

You can create a custom window background by replacing the "background" delegate of ApplicationWindowStyle with a custom design.

范例:

ApplicationWindow {
    style: ApplicationWindowStyle {
        background: BorderImage {
            source: "background.png"
            border { left: 20; top: 20; right: 20; bottom: 20 }
        }
    }
}
					

特性文档编制

background : 组件

A custom background for the window.

注意: The window might have a custom background color set. The custom background color is automatically filled by the window. The background delegate should respect the custom background color by either hiding itself altogether when a custom background color is set, or by letting the custom background color shine through.

The following read-only property is available within the scope of the background delegate:

styleData.hasColor : bool Whether the window has a custom background color set.

[read-only] control : ApplicationWindow

The window attached to this style.