使用QT编写一个helloworld窗体
时间: 2023-09-04 15:07:57 浏览: 101
好的,下面是使用QT编写一个简单的helloworld窗体的步骤:
1. 打开QT Creator,创建一个新的QT Widgets应用程序项目。
2. 在MainWindow.ui中拖动一个Label控件到窗体上。
3. 在Label的属性中将"Hello World"文本设置为Label的文本。
4. 在MainWindow.cpp中,找到构造函数MainWindow::MainWindow(QWidget *parent)。
5. 在构造函数中添加以下代码:
```
ui->setupUi(this);
```
6. 编译并运行程序,即可看到一个简单的helloworld窗体。
完整代码如下:
MainWindow.ui:
```
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>MainWindow</class>
<widget class="QMainWindow" name="MainWindow">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>400</width>
<height>300</height>
</rect>
</property>
<property name="windowTitle">
<string>MainWindow</string>
</property>
<widget class="QLabel" name="label">
<property name="geometry">
<rect>
<x>140</x>
<y>110</y>
<width>111</width>
<height>16</height>
</rect>
</property>
<property name="text">
<string>Hello World</string>
</property>
</widget>
</widget>
<resources/>
<connections/>
</ui>
```
MainWindow.cpp:
```
#include "mainwindow.h"
#include "ui_mainwindow.h"
MainWindow::MainWindow(QWidget *parent)
: QMainWindow(parent)
, ui(new Ui::MainWindow)
{
ui->setupUi(this);
}
MainWindow::~MainWindow()
{
delete ui;
}
```
阅读全文