21 lines
391 B
QML
21 lines
391 B
QML
// Copyright (C) 2021 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
|
|
|
|
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Dialogs
|
|
|
|
ApplicationWindow {
|
|
id: window
|
|
width: 640
|
|
height: 480
|
|
|
|
property alias dialog: dialog
|
|
|
|
FolderDialog {
|
|
id: dialog
|
|
acceptLabel: "AcceptTest"
|
|
rejectLabel: "RejectTest"
|
|
}
|
|
}
|