import QtQuick 2.1 import QtQuick.Controls 1.0 import QtQuick.Controls.Styles 1.0 Rectangle { width: 320 height: 240 TextField { anchors.centerIn: parent placeholderText: "Placeholder" style: TextFieldStyle { background: Rectangle { border { width: 1 color: "black" } } font { pixelSize: 24 } } } }