码迷,mamicode.com
首页 > 其他好文 > 详细

输入元素( Input Element)

时间:2015-07-17 18:18:31      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:

import QtQuick 2.0
Rectangle {
width: 200
height: 80
color: "linen"
TextInput {
id: input1
x: 8; y: 8
width: 96; height: 20
focus: true
text: "Text Input 1"
KeyNavigation.tab: input2
}
TextInput {
id: input2
x: 8; y: 36
width: 96; height: 20
text: "Text Input 2"
KeyNavigation.tab: input1
}
}

输入元素( Input Element)

标签:

原文地址:http://www.cnblogs.com/yechuang/p/4655083.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!