add book
This commit is contained in:
31
Qt6QMLBeginnersCode/8-QtQuickControls/8-Frame/Main.qml
Normal file
31
Qt6QMLBeginnersCode/8-QtQuickControls/8-Frame/Main.qml
Normal file
@@ -0,0 +1,31 @@
|
||||
// Copyright (c) Daniel Gakwaya.
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
import QtQuick
|
||||
import QtQuick.Controls
|
||||
import QtQuick.Layouts
|
||||
|
||||
Window {
|
||||
visible: true
|
||||
width: 640
|
||||
height: 480
|
||||
title: qsTr("Frame")
|
||||
|
||||
Frame {
|
||||
anchors.centerIn: parent
|
||||
|
||||
ColumnLayout {
|
||||
|
||||
Button {
|
||||
text: "Button1"
|
||||
}
|
||||
Button {
|
||||
text: "Button2"
|
||||
}
|
||||
Button {
|
||||
text: "Button3"
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user