import QtQuick 2.2 import QtQuick.Window 2.1 Window { visible: true width: 360 height: 360 Column { anchors.centerIn: parent Text { text: qsTr("->[シリアルナ]<-") font.family: "Arial" font.pixelSize: 20 renderType: Text.QtRendering } Text { text: qsTr("->[シリアルナ]<-") font.family: "Arial" font.pixelSize: 20 renderType: Text.NativeRendering } } }