xlang
v4.0 Release
程序设计语言基础库文档
载入中...
搜索中...
未找到
xlibrarys
Qt5
Qt5
qt5
widgets
QCheckBox.xcsm
浏览该文件的文档.
1
package
Qt{
2
@SuppressWarnings public class QCheckBox : QAbstractButton{
3
public QCheckBox(){
4
}
5
6
public QCheckBox(long handle){
7
super(handle);
8
}
9
10
public
bool
create
()
override
{
11
nativehandle = QtXnl.createQObject(QType.qtCheckBox,
this
, 0);
12
if
(nativehandle == 0){
13
return
false
;
14
}
15
return
true
;
16
}
17
18
public
bool
create
(@NotNilptr QWidget parent)
override
{
19
nativehandle = QtXnl.createQObject(QType.qtCheckBox,
this
, parent.nativehandle);
20
if
(nativehandle == 0){
21
return
false
;
22
}
23
return
true
;
24
}
25
};
26
};
Qt.QCheckBox.create
bool create() override
Definition
QCheckBox.xcsm:10
Qt.QCheckBox.create
bool create(@NotNilptr QWidget parent) override
Definition
QCheckBox.xcsm:18
制作者
1.9.8