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