一、手动绘制对话框,生成代码
// 1.创建一个Qt Application项目:gotocelldialog
// 2.点击“Qt5”-->“Launch Desiner”-->绘制需要的的窗体-->保存为“gotocelldialog.ui”
// 3.重新编译、运行程序,提示“gotocelldialogClass”: 不是“Ui”的成员。查看“ui_gotocelldialog.h”,发现自动生成的窗体名为“MainWindow”
// 4.Ui::gotocelldialogClassui;修改为Ui::MainWindow ui;或者在绘制窗体时,将窗体名命名为gotocelldialogClassui。编译运行,OK。
// 5. 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>271</width>
<height>79</height>
</rect>
</property>
<property name="windowTitle">
<string>MainWindow</string>
</property>
<widget class="QWidget" name="centralwidget">
<widget class="QLabel" name="label">
<property name="geometry">
<rect>
<x>32</x>
<y>2</y>
<width>48</width>
<height>16</height>
</rect>
</property>
<