web-dev-qa-db-fra.com

Création d'un formulaire de connexion simple à l'aide de Qt creator sans aucun QtQuickControls

Je suis nouveau sur Qt Creator. Je veux créer un formulaire simple (par exemple un formulaire de connexion) avec un bouton d'envoi en qml mais sans utiliser d'importation QtQuick.Controls. Comment créer des boutons en utilisant le composant Rectangle? (qui utilise Qt Quick-Basic)

Quelqu'un peut-il aider avec ces derniers?

2
Sayli Jawale

J'ai trouvé la réponse à la question ci-dessus:

Voici le code:

import QtQuick 1.0

Rectangle{
    id:screen
    color: "lightgray"
    width: 3000; height:2700

    Column {
        id: column1
        width: 201
        height: 400

        Row {
            id: row1
            width: 40
            height:50

            TextInput {
                id: userName
                x: 40
                y: 18
                width: 80
                height: 20
                text: qsTr("UserName")
                font.pixelSize: 12
            }

            Rectangle {
                id: rectangle1
                x: 115
                y: 18
                width: 80
                height: 20
                color: "#ffffff"
            }


        }

        Row {
            id: row2
            width: 40
            height: 50

            TextInput {
                id: password
                x: 40
                y: 18
                width: 80
                height: 20
                text: qsTr("Password")
                font.pixelSize: 12
            }

            Rectangle {
                id: rectangle2
                x: 115
                y: 18
                width: 80
                height: 20
                color: "#ffffff"
            }
        }

        Row {
            id: row3
            x: 8
            y: 113
            width: 40
            height: 50

            Rectangle {
                id: rectangle3
                x: 8
                y: 8
                width: 80
                height: 20
                color: "#ffffff"

            Text {
                id: login
                text: "Login"
                x:4
                y:4
                width:30
                height:10
                font.pixelSize: 12
            }
        }
    }
}
1
Sayli Jawale