2022-06-03 11:26:02 +00:00
|
|
|
// Copyright (C) 2020 The Qt Company Ltd.
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
2020-10-14 12:02:00 +00:00
|
|
|
|
|
|
|
//! [file]
|
2020-12-01 13:13:32 +00:00
|
|
|
import QtQuick
|
|
|
|
import QtQuick.Controls
|
2020-10-14 12:02:00 +00:00
|
|
|
|
|
|
|
ApplicationWindow {
|
|
|
|
width: 400
|
|
|
|
height: 400
|
|
|
|
visible: true
|
|
|
|
|
|
|
|
Button {
|
|
|
|
id: button
|
|
|
|
text: "A Special Button"
|
|
|
|
background: Rectangle {
|
|
|
|
implicitWidth: 100
|
|
|
|
implicitHeight: 40
|
|
|
|
color: button.down ? "#d6d6d6" : "#f6f6f6"
|
|
|
|
border.color: "#26282a"
|
|
|
|
border.width: 1
|
|
|
|
radius: 4
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
//! [file]
|