xlang v4.0 Release
程序设计语言基础库文档
载入中...
搜索中...
未找到
QCheckBox.xcsm
浏览该文件的文档.
1package 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};
bool create() override
bool create(@NotNilptr QWidget parent) override