En este ejemplo, crearemos un componente TextEdit
y TextField. Puedes ingresar y editar texto en el cuadro de texto. La propiedad placeholderText
se utiliza para mostrar un mensaje de marcador de posición en el cuadro de texto cuando está vacío.
import QtQuick
import QtQuick.Controls
ApplicationWindow {
visible: true
width: 400
height: 300
title: "TextField y TextEdit"
Column {
spacing: 10
TextField {
id: textField
width: 200
placeholderText: "Escribe algo aquí..."
}
TextEdit {
id: textEdit
width: 200
height: 30
}
}
}