aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quickcontrols/styleimports/data/customStyleSelector.qml
blob: a3def8b14be58031b4c9eb5fa94504b8e3c20bec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright (C) 2022 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

import QtQuick
import QtQuick.Controls

ApplicationWindow {
    title: "Test Application Window"
    width: 400
    height: 400

    property alias customComponent: customComponent

    CustomComponent {
        id: customComponent
    }
}