QtQuick.Layouts: RowLayout |
import QtQuick 2.1 import QtQuick.Controls 1.0 import QtQuick.Window 2.0 import QtQuick.Layouts 1.0 ApplicationWindow { id: myWindow title: "Qteveloper (http://qteveloper.blogspot.com/)" width: 480 height: 320 RowLayout{ Button { text: "button 1"} Button { text: "button 2"} RowLayout{ Label { text: "label 3A"} Label { text: "Label 3B"} Label { text: "label 3C"} } Button { text: "button 4"} } }