import QtQuick 2.0 Item { width: 128 height: 64 TextEdit { id: textEdit anchors.fill: parent readOnly: true text: "19.28.37.46" horizontalAlignment: Qt.AlignHCenter verticalAlignment: Qt.AlignVCenter selectedTextColor: "white" selectionColor: "black" renderType: Text.NativeRendering antialiasing: false Component.onCompleted: { textEdit.select(0, 1); } } }