import QtQuick 2.1 import QtQuick.Controls 1.0 import QtQuick.Controls.Styles 1.0 import QtQuick.Window 2.0 ApplicationWindow { width: 640 height: 480 CheckBox { width: 100 anchors.centerIn: parent text: "This is very long text that should be wrapped" style: CheckBoxStyle { label: Text { wrapMode: Text.WordWrap text: control.text } } } }