2 Star 0 Fork 0

wmatrix/test-example

Create your Gitee Account
Explore and code with more than 14 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
hello_client.cpp 462 Bytes
Copy Edit Raw Blame History
#include "qapplication.h"
#include "qlabel.h"
#include "qvbox.h"
#include <unistd.h>
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
QVBox *qvbox = new QVBox(0);
QLabel *label = new QLabel("QWSClient 1",qvbox);
qvbox->setCaption("Hello QWSClient");
qvbox->setName("vbox");
qvbox->resize(640,480);
qvbox->move(10,10);
label->resize(600,400);
label->setName("label");
app.setMainWidget(qvbox);
qvbox->show();
return app.exec();
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/W-Matrix/test-example.git
git@gitee.com:W-Matrix/test-example.git
W-Matrix
test-example
test-example
master

Search