Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import QtQuick 2.2
- import QtQuick.Controls 1.2
- import QtQuick.Layouts 1.0
- import Example.FizzBuzz 0.1
- ApplicationWindow {
- title: 'FizzBuzz'
- GridLayout {
- anchors.fill: parent
- anchors.margins: 10
- columns: 2
- Label { text: 'Input' }
- TextField { id: input; focus: true }
- Label { text: 'Result' }
- Label { id: result; text: fizzBuzz.result }
- }
- FizzBuzz {
- id: fizzBuzz
- input: input.text
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement