07 2015 档案
摘要: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:...
阅读全文
摘要:Properties stops : listDetailed Description A gradient is defined by two or more colors, which will be blended seamlessly. The colors are specified as a set of GradientStop child items, each of which...
阅读全文
摘要:style : enumerationSet an additional text style.Supported text styles are:Text.Normal - the defaultText.OutlineText.RaisedText.SunkenRow { Text { font.pointSize: 24; text: "Normal" } Text { font...
阅读全文
摘要:opacity : realThis property holds the opacity of the item. Opacity is specified as a number between 0.0 (fully transparent) and 1.0 (fully opaque). Th...
阅读全文