add book
This commit is contained in:
22
Qt6QMLBeginnersCode/5.UserInput/6-FocusScope/Main.qml
Normal file
22
Qt6QMLBeginnersCode/5.UserInput/6-FocusScope/Main.qml
Normal file
@@ -0,0 +1,22 @@
|
||||
// Copyright (c) Daniel Gakwaya.
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
import QtQuick
|
||||
|
||||
Window {
|
||||
visible: true
|
||||
width: 640
|
||||
height: 480
|
||||
title: qsTr("FocusScope Demo")
|
||||
|
||||
Column {
|
||||
MButton{
|
||||
color: "yellow"
|
||||
focus: true
|
||||
}
|
||||
|
||||
MButton{
|
||||
color: "green"
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user