Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
Hey there, another newbie question….
My requirement is to create a group box that is divided into two parts,both part contains separate test boxes (Some text displayed over there). plz help me to achive this.
What have you tried so far? What did not work?
Something like this? @ import QtQuick 1.1
Item { width: 210 height: 100
Row { spacing: 10 Rectangle { width: 100 height: 100 color: "lightblue" Text { anchors.centerIn: parent text: "Hello" } } Rectangle { width: 100 height: 100 color: "lightblue" Text { anchors.centerIn: parent text: "World" } } }
} @ !https://dl.dropbox.com/u/21467/opengl/6.png(Preview)!