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