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