From 2b97e2b3193b574bfd53f6e356322abe9d566d16 Mon Sep 17 00:00:00 2001 From: Wenzhuo Zhang <Wenzhuo Zhang> Date: 星期四, 17 十月 2024 04:02:51 +0800 Subject: [PATCH] zwz --- Client/张文卓/code/pro_1017/mainwindow.cpp | 102 +++++++ Client/张文卓/code/pro_1017/mainwindow.ui | 626 ++++++++++++++++++++++++++++++++++++++++++++ Client/张文卓/code/pro_1017/pro_1017.pro | 37 ++ Client/张文卓/code/pro_1017/main.cpp | 11 Client/张文卓/code/pro_1017/mainwindow.h | 43 +++ Client/张文卓/code/pro_1017/pic.qrc | 5 Client/张文卓/code/pro_1017/标题图片.png | 0 7 files changed, 824 insertions(+), 0 deletions(-) diff --git "a/Client/\345\274\240\346\226\207\345\215\223/code/pro_1017/main.cpp" "b/Client/\345\274\240\346\226\207\345\215\223/code/pro_1017/main.cpp" new file mode 100644 index 0000000..b48f94e --- /dev/null +++ "b/Client/\345\274\240\346\226\207\345\215\223/code/pro_1017/main.cpp" @@ -0,0 +1,11 @@ +#include "mainwindow.h" +#include <QApplication> + +int main(int argc, char *argv[]) +{ + QApplication a(argc, argv); + MainWindow w; + w.show(); + + return a.exec(); +} diff --git "a/Client/\345\274\240\346\226\207\345\215\223/code/pro_1017/mainwindow.cpp" "b/Client/\345\274\240\346\226\207\345\215\223/code/pro_1017/mainwindow.cpp" new file mode 100644 index 0000000..095d7fb --- /dev/null +++ "b/Client/\345\274\240\346\226\207\345\215\223/code/pro_1017/mainwindow.cpp" @@ -0,0 +1,102 @@ +#include "mainwindow.h" +#include "ui_mainwindow.h" +#include <QtCharts/QChartView> +#include <QtCharts/QBarSeries> +#include <QtCharts/QBarSet> +#include <QtCharts/QBarCategoryAxis> +#include <QtCharts/QValueAxis> +#include <QtCharts/QLineSeries> +#include <QtCharts/QDateTimeAxis> +#include <QDateTime> +#include <QStackedWidget> + +MainWindow::MainWindow(QWidget *parent) : + QMainWindow(parent), + ui(new Ui::MainWindow) +{ + ui->setupUi(this); + // 鑾峰彇鍦� Qt Designer 涓懡鍚嶄负 myWidget 鐨� QWidget + myWidget = findChild<QWidget*>("myWidget"); + + setupChartsInWidget(); +} + +MainWindow::~MainWindow() +{ + delete ui; +} + +void MainWindow::on_pushButton_clicked() +{ + ui->stackedWidget->setCurrentIndex(0); +} + +void MainWindow::on_pushButton_2_clicked() +{ + ui->stackedWidget->setCurrentIndex(1); +} + +void MainWindow::on_pushButton_3_clicked() +{ + ui->stackedWidget->setCurrentIndex(2); +} + +void MainWindow::on_pushButton_4_clicked() +{ + ui->stackedWidget->setCurrentIndex(3); +} + +void MainWindow::setupChartsInWidget() +{ + // 鍒涘缓鍥捐〃瑙嗗浘 + QChartView *chartView = new QChartView(); + QChart *chart = new QChart(); + + // 鍚勮溅闂寸敓浜ц繘搴﹀姣旓紙鏌辩姸鍥撅級 + QBarSeries *series1 = new QBarSeries(); + QBarSet *set11 = new QBarSet("杞﹂棿1"); + QBarSet *set12 = new QBarSet("杞﹂棿2"); + QBarSet *set13 = new QBarSet("杞﹂棿3"); + *set11 << 60 << 70 << 80; + *set12 << 50 << 65 << 75; + *set13 << 40 << 55 << 65; + series1->append(set11); + series1->append(set12); + series1->append(set13); + chart->addSeries(series1); + chart->setTitle("鍚勮溅闂寸敓浜ц繘搴﹀姣�"); + QBarCategoryAxis *axisX1 = new QBarCategoryAxis(); + axisX1->append("闃舵1"); + axisX1->append("闃舵2"); + axisX1->append("闃舵3"); + QValueAxis *axisY1 = new QValueAxis(); + axisY1->setRange(0, 100); + chart->addAxis(axisX1, Qt::AlignBottom); + chart->addAxis(axisY1, Qt::AlignLeft); + series1->attachAxis(axisX1); + series1->attachAxis(axisY1); + + // 浜у搧鐟曠柕鐜囪秼鍔垮浘锛堟姌绾垮浘锛� + QLineSeries *series2 = new QLineSeries(); + series2->append(0, 5); + series2->append(1, 3); + series2->append(2, 4); + series2->append(3, 6); + chart->addSeries(series2); + chart->setTitle("浜у搧鐟曠柕鐜囪秼鍔垮浘"); + QDateTimeAxis *axisX2 = new QDateTimeAxis(); + axisX2->setFormat("dd.MM.yyyy"); + axisX2->setRange(QDateTime::currentDateTime().addDays(-3), QDateTime::currentDateTime()); + QValueAxis *axisY2 = new QValueAxis(); + axisY2->setRange(0, 10); + chart->addAxis(axisX2, Qt::AlignBottom); + chart->addAxis(axisY2, Qt::AlignLeft); + series2->attachAxis(axisX2); + series2->attachAxis(axisY2); + + chartView->setChart(chart); + + // 灏嗗浘琛ㄨ鍥炬坊鍔犲埌鍦� Qt Designer 涓嫋鏀剧殑 QWidget 涓� + QVBoxLayout *layout = new QVBoxLayout(myWidget); + layout->addWidget(chartView); +} diff --git "a/Client/\345\274\240\346\226\207\345\215\223/code/pro_1017/mainwindow.h" "b/Client/\345\274\240\346\226\207\345\215\223/code/pro_1017/mainwindow.h" new file mode 100644 index 0000000..606b58b --- /dev/null +++ "b/Client/\345\274\240\346\226\207\345\215\223/code/pro_1017/mainwindow.h" @@ -0,0 +1,43 @@ +#ifndef MAINWINDOW_H +#define MAINWINDOW_H + +#include <QMainWindow> +#include <QtCharts/QChartView> +#include <QtCharts/QBarSeries> +#include <QtCharts/QBarSet> +#include <QtCharts/QBarCategoryAxis> +#include <QtCharts/QValueAxis> +#include <QtCharts/QLineSeries> +#include <QtCharts/QDateTimeAxis> +#include <QStackedWidget> + +QT_CHARTS_USE_NAMESPACE + +namespace Ui { +class MainWindow; +} + +class MainWindow : public QMainWindow +{ + Q_OBJECT + +public: + explicit MainWindow(QWidget *parent = 0); + ~MainWindow(); + +private slots: + void on_pushButton_clicked(); + + void on_pushButton_2_clicked(); + + void on_pushButton_3_clicked(); + + void on_pushButton_4_clicked(); +private slots: + void setupChartsInWidget(); +private: + Ui::MainWindow *ui; + QWidget *myWidget; +}; + +#endif // MAINWINDOW_H diff --git "a/Client/\345\274\240\346\226\207\345\215\223/code/pro_1017/mainwindow.ui" "b/Client/\345\274\240\346\226\207\345\215\223/code/pro_1017/mainwindow.ui" new file mode 100644 index 0000000..45419a4 --- /dev/null +++ "b/Client/\345\274\240\346\226\207\345\215\223/code/pro_1017/mainwindow.ui" @@ -0,0 +1,626 @@ +<?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>1237</width> + <height>799</height> + </rect> + </property> + <property name="windowTitle"> + <string>MainWindow</string> + </property> + <widget class="QWidget" name="centralWidget"> + <layout class="QGridLayout" name="gridLayout"> + <item row="0" column="0"> + <layout class="QHBoxLayout" name="horizontalLayout"> + <item> + <widget class="QLabel" name="label"> + <property name="text"> + <string/> + </property> + <property name="pixmap"> + <pixmap resource="pic.qrc">:/new/prefix1/鏍囬鍥剧墖.png</pixmap> + </property> + </widget> + </item> + <item> + <widget class="QPushButton" name="pushButton"> + <property name="text"> + <string>鐢熶骇璁″垝鍒跺畾</string> + </property> + </widget> + </item> + <item> + <widget class="QPushButton" name="pushButton_2"> + <property name="text"> + <string>鐢熶骇璁″垝鎵ц</string> + </property> + </widget> + </item> + <item> + <widget class="QPushButton" name="pushButton_3"> + <property name="text"> + <string>鐢熶骇璁″垝璋冩暣</string> + </property> + </widget> + </item> + <item> + <widget class="QPushButton" name="pushButton_4"> + <property name="text"> + <string>淇℃伅灞曠ず涓庢帶鍒�</string> + </property> + </widget> + </item> + </layout> + </item> + <item row="1" column="0"> + <layout class="QHBoxLayout" name="horizontalLayout_9"> + <item> + <widget class="QLabel" name="label_9"> + <property name="text"> + <string>鐢熶骇璁″垝鐘舵��</string> + </property> + </widget> + </item> + <item> + <widget class="Line" name="line"> + <property name="orientation"> + <enum>Qt::Vertical</enum> + </property> + </widget> + </item> + <item> + <widget class="QLabel" name="label_22"> + <property name="text"> + <string>TextLabel</string> + </property> + </widget> + </item> + <item> + <spacer name="horizontalSpacer"> + <property name="orientation"> + <enum>Qt::Horizontal</enum> + </property> + <property name="sizeHint" stdset="0"> + <size> + <width>40</width> + <height>20</height> + </size> + </property> + </spacer> + </item> + </layout> + </item> + <item row="2" column="0"> + <widget class="QStackedWidget" name="stackedWidget"> + <property name="currentIndex"> + <number>3</number> + </property> + <widget class="QWidget" name="page"> + <widget class="QWidget" name="layoutWidget"> + <property name="geometry"> + <rect> + <x>90</x> + <y>50</y> + <width>1051</width> + <height>531</height> + </rect> + </property> + <layout class="QVBoxLayout" name="verticalLayout"> + <item> + <layout class="QHBoxLayout" name="horizontalLayout_8"> + <item> + <widget class="QLabel" name="label_2"> + <property name="text"> + <string>鐢熶骇璁″垝鍞竴鏍囪瘑绗�</string> + </property> + </widget> + </item> + <item> + <widget class="Line" name="line_8"> + <property name="orientation"> + <enum>Qt::Vertical</enum> + </property> + </widget> + </item> + <item> + <widget class="QLineEdit" name="lineEdit_2"/> + </item> + </layout> + </item> + <item> + <widget class="Line" name="line_2"> + <property name="orientation"> + <enum>Qt::Horizontal</enum> + </property> + </widget> + </item> + <item> + <layout class="QHBoxLayout" name="horizontalLayout_7"> + <item> + <widget class="QLabel" name="label_3"> + <property name="text"> + <string>鐢熶骇璁″垝鍚嶇О</string> + </property> + </widget> + </item> + <item> + <widget class="Line" name="line_9"> + <property name="orientation"> + <enum>Qt::Vertical</enum> + </property> + </widget> + </item> + <item> + <widget class="QLineEdit" name="lineEdit_3"/> + </item> + </layout> + </item> + <item> + <widget class="Line" name="line_3"> + <property name="orientation"> + <enum>Qt::Horizontal</enum> + </property> + </widget> + </item> + <item> + <layout class="QHBoxLayout" name="horizontalLayout_6"> + <item> + <widget class="QLabel" name="label_4"> + <property name="text"> + <string>鍏宠仈璁㈠崟缂栧彿</string> + </property> + </widget> + </item> + <item> + <widget class="Line" name="line_10"> + <property name="orientation"> + <enum>Qt::Vertical</enum> + </property> + </widget> + </item> + <item> + <widget class="QLineEdit" name="lineEdit_4"/> + </item> + </layout> + </item> + <item> + <widget class="Line" name="line_4"> + <property name="orientation"> + <enum>Qt::Horizontal</enum> + </property> + </widget> + </item> + <item> + <layout class="QHBoxLayout" name="horizontalLayout_5"> + <item> + <widget class="QLabel" name="label_5"> + <property name="text"> + <string>鐢熶骇鐨刾cb浜у搧绫诲瀷</string> + </property> + </widget> + </item> + <item> + <widget class="Line" name="line_11"> + <property name="orientation"> + <enum>Qt::Vertical</enum> + </property> + </widget> + </item> + <item> + <widget class="QLineEdit" name="lineEdit_5"/> + </item> + </layout> + </item> + <item> + <widget class="Line" name="line_5"> + <property name="orientation"> + <enum>Qt::Horizontal</enum> + </property> + </widget> + </item> + <item> + <layout class="QHBoxLayout" name="horizontalLayout_4"> + <item> + <widget class="QLabel" name="label_6"> + <property name="text"> + <string>鐢熶骇鐨刾cb浜у搧鏁伴噺</string> + </property> + </widget> + </item> + <item> + <widget class="Line" name="line_12"> + <property name="orientation"> + <enum>Qt::Vertical</enum> + </property> + </widget> + </item> + <item> + <widget class="QLineEdit" name="lineEdit_6"/> + </item> + </layout> + </item> + <item> + <widget class="Line" name="line_6"> + <property name="orientation"> + <enum>Qt::Horizontal</enum> + </property> + </widget> + </item> + <item> + <layout class="QHBoxLayout" name="horizontalLayout_3"> + <item> + <widget class="QLabel" name="label_7"> + <property name="text"> + <string>寮�濮嬫椂闂�</string> + </property> + </widget> + </item> + <item> + <widget class="Line" name="line_13"> + <property name="orientation"> + <enum>Qt::Vertical</enum> + </property> + </widget> + </item> + <item> + <widget class="QLineEdit" name="lineEdit_7"/> + </item> + </layout> + </item> + <item> + <widget class="Line" name="line_7"> + <property name="orientation"> + <enum>Qt::Horizontal</enum> + </property> + </widget> + </item> + <item> + <layout class="QHBoxLayout" name="horizontalLayout_2"> + <item> + <widget class="QLabel" name="label_8"> + <property name="text"> + <string>缁撴潫鏃堕棿</string> + </property> + </widget> + </item> + <item> + <widget class="Line" name="line_14"> + <property name="orientation"> + <enum>Qt::Vertical</enum> + </property> + </widget> + </item> + <item> + <widget class="QLineEdit" name="lineEdit_8"/> + </item> + </layout> + </item> + </layout> + </widget> + <widget class="QWidget" name="layoutWidget_2"> + <property name="geometry"> + <rect> + <x>720</x> + <y>10</y> + <width>421</width> + <height>31</height> + </rect> + </property> + <layout class="QHBoxLayout" name="horizontalLayout_10"> + <item> + <widget class="QLabel" name="label_10"> + <property name="text"> + <string>鏍规嵁鍘嗗彶鐟曠柕鐜囬浼版湰椤圭洰鐟曠柕鐜�</string> + </property> + </widget> + </item> + <item> + <widget class="QLineEdit" name="lineEdit"/> + </item> + <item> + <widget class="QLabel" name="label_12"> + <property name="text"> + <string>锛堟寜鐓х櫨鍒嗘瘮鏉ヨ〃绀猴紝鍐欐暟瀛楋級</string> + </property> + </widget> + </item> + <item> + <widget class="QLabel" name="label_11"> + <property name="text"> + <string/> + </property> + </widget> + </item> + </layout> + </widget> + </widget> + <widget class="QWidget" name="page_2"> + <widget class="QWidget" name="layoutWidget_4"> + <property name="geometry"> + <rect> + <x>100</x> + <y>10</y> + <width>1051</width> + <height>531</height> + </rect> + </property> + <layout class="QVBoxLayout" name="verticalLayout_2"> + <item> + <layout class="QHBoxLayout" name="horizontalLayout_16"> + <item> + <widget class="QLabel" name="label_13"> + <property name="text"> + <string>鐢熶骇浠诲姟鍞竴鏍囪瘑绗�</string> + </property> + </widget> + </item> + <item> + <widget class="QLineEdit" name="lineEdit_10"/> + </item> + </layout> + </item> + <item> + <layout class="QHBoxLayout" name="horizontalLayout_11"> + <item> + <widget class="QLabel" name="label_18"> + <property name="text"> + <string>鐢熶骇浠诲姟鍚嶇О</string> + </property> + </widget> + </item> + <item> + <widget class="QLineEdit" name="lineEdit_15"/> + </item> + </layout> + </item> + <item> + <layout class="QHBoxLayout" name="horizontalLayout_15"> + <item> + <widget class="QLabel" name="label_14"> + <property name="text"> + <string>鐢熶骇杞﹂棿鐨勭紪鍙�</string> + </property> + </widget> + </item> + <item> + <widget class="QLineEdit" name="lineEdit_11"/> + </item> + </layout> + </item> + <item> + <layout class="QHBoxLayout" name="horizontalLayout_21"> + <item> + <widget class="QLabel" name="label_28"> + <property name="text"> + <string>璇ヤ换鍔℃槸鐢变汉宸ユ搷浣滆繕鏄嚜鍔ㄥ寲鎿嶄綔</string> + </property> + </widget> + </item> + <item> + <widget class="QLineEdit" name="lineEdit_16"/> + </item> + </layout> + </item> + <item> + <layout class="QHBoxLayout" name="horizontalLayout_14"> + <item> + <widget class="QLabel" name="label_15"> + <property name="text"> + <string>涓昏澶囧彿(浜哄伐鎿嶄綔涓虹┖)</string> + </property> + </widget> + </item> + <item> + <widget class="QLineEdit" name="lineEdit_12"/> + </item> + </layout> + </item> + <item> + <layout class="QHBoxLayout" name="horizontalLayout_13"> + <item> + <widget class="QLabel" name="label_16"> + <property name="text"> + <string>璐熻矗浠诲姟鐨勫憳宸ョ紪鍙�(鑷姩鍖栨搷浣滀负绌�)</string> + </property> + </widget> + </item> + <item> + <widget class="QLineEdit" name="lineEdit_13"/> + </item> + </layout> + </item> + <item> + <layout class="QHBoxLayout" name="horizontalLayout_12"> + <item> + <widget class="QLabel" name="label_17"> + <property name="text"> + <string>浜у搧鏁伴噺</string> + </property> + </widget> + </item> + <item> + <widget class="QLineEdit" name="lineEdit_14"/> + </item> + </layout> + </item> + </layout> + </widget> + <widget class="QPushButton" name="pushButton_7"> + <property name="geometry"> + <rect> + <x>1040</x> + <y>570</y> + <width>191</width> + <height>61</height> + </rect> + </property> + <property name="font"> + <font> + <pointsize>15</pointsize> + </font> + </property> + <property name="text"> + <string>寮�濮嬫墽琛岀敓浜�</string> + </property> + </widget> + </widget> + <widget class="QWidget" name="page_3"> + <widget class="QWidget" name="layoutWidget_5"> + <property name="geometry"> + <rect> + <x>110</x> + <y>10</y> + <width>1051</width> + <height>461</height> + </rect> + </property> + <layout class="QVBoxLayout" name="verticalLayout_5"> + <item> + <layout class="QHBoxLayout" name="horizontalLayout_17"> + <item> + <widget class="QLabel" name="label_19"> + <property name="text"> + <string>鐢熶骇杩囩▼鐟曠柕鐜囪秴鍑洪鏈�</string> + </property> + </widget> + </item> + <item> + <widget class="QLabel" name="label_27"> + <property name="text"> + <string>TextLabel</string> + </property> + </widget> + </item> + </layout> + </item> + <item> + <layout class="QHBoxLayout" name="horizontalLayout_18"> + <item> + <widget class="QLabel" name="label_20"> + <property name="text"> + <string>鍘熸潗鏂欏簱瀛樹繚鏈夐噺鍛婃��</string> + </property> + </widget> + </item> + <item> + <widget class="QLabel" name="label_26"> + <property name="text"> + <string>TextLabel</string> + </property> + </widget> + </item> + </layout> + </item> + <item> + <layout class="QHBoxLayout" name="horizontalLayout_19"> + <item> + <widget class="QLabel" name="label_21"> + <property name="text"> + <string>璁惧鏁呴殰璁惧鐨勭紪鍙�</string> + </property> + </widget> + </item> + <item> + <widget class="QLabel" name="label_25"> + <property name="text"> + <string>TextLabel</string> + </property> + </widget> + </item> + </layout> + </item> + <item> + <layout class="QHBoxLayout" name="horizontalLayout_20"> + <item> + <widget class="QLabel" name="label_23"> + <property name="text"> + <string>浜哄憳鏃犳硶杩涜姝e父鐢熶骇 浜哄憳鐨勭紪鍙�</string> + </property> + </widget> + </item> + <item> + <widget class="QLabel" name="label_24"> + <property name="text"> + <string>TextLabel</string> + </property> + </widget> + </item> + </layout> + </item> + </layout> + </widget> + <widget class="QPushButton" name="pushButton_5"> + <property name="geometry"> + <rect> + <x>110</x> + <y>510</y> + <width>191</width> + <height>61</height> + </rect> + </property> + <property name="styleSheet"> + <string notr="true">background-color: rgb(255, 0, 0);</string> + </property> + <property name="text"> + <string>鍋滄鐢熶骇绾跨殑鐢熶骇</string> + </property> + </widget> + <widget class="QPushButton" name="pushButton_6"> + <property name="geometry"> + <rect> + <x>970</x> + <y>500</y> + <width>191</width> + <height>61</height> + </rect> + </property> + <property name="styleSheet"> + <string notr="true">background-color: rgb(0, 255, 0);</string> + </property> + <property name="text"> + <string>鎭㈠鐢熶骇绾跨殑鐢熶骇</string> + </property> + </widget> + </widget> + <widget class="QWidget" name="page_4"> + <layout class="QGridLayout" name="gridLayout_2"> + <item row="0" column="0"> + <widget class="QWidget" name="myWidget" native="true"/> + </item> + </layout> + </widget> + </widget> + </item> + </layout> + </widget> + <widget class="QMenuBar" name="menuBar"> + <property name="geometry"> + <rect> + <x>0</x> + <y>0</y> + <width>1237</width> + <height>23</height> + </rect> + </property> + </widget> + <widget class="QToolBar" name="mainToolBar"> + <attribute name="toolBarArea"> + <enum>TopToolBarArea</enum> + </attribute> + <attribute name="toolBarBreak"> + <bool>false</bool> + </attribute> + </widget> + <widget class="QStatusBar" name="statusBar"/> + </widget> + <layoutdefault spacing="6" margin="11"/> + <resources> + <include location="pic.qrc"/> + </resources> + <connections/> +</ui> diff --git "a/Client/\345\274\240\346\226\207\345\215\223/code/pro_1017/pic.qrc" "b/Client/\345\274\240\346\226\207\345\215\223/code/pro_1017/pic.qrc" new file mode 100644 index 0000000..e8a82f5 --- /dev/null +++ "b/Client/\345\274\240\346\226\207\345\215\223/code/pro_1017/pic.qrc" @@ -0,0 +1,5 @@ +<RCC> + <qresource prefix="/new/prefix1"> + <file>鏍囬鍥剧墖.png</file> + </qresource> +</RCC> diff --git "a/Client/\345\274\240\346\226\207\345\215\223/code/pro_1017/pro_1017.pro" "b/Client/\345\274\240\346\226\207\345\215\223/code/pro_1017/pro_1017.pro" new file mode 100644 index 0000000..c2c52ef --- /dev/null +++ "b/Client/\345\274\240\346\226\207\345\215\223/code/pro_1017/pro_1017.pro" @@ -0,0 +1,37 @@ +#------------------------------------------------- +# +# Project created by QtCreator 2024-10-17T02:36:42 +# +#------------------------------------------------- + +QT += core gui +QT += charts +greaterThan(QT_MAJOR_VERSION, 4): QT += widgets + +TARGET = pro_1017 +TEMPLATE = app + +# The following define makes your compiler emit warnings if you use +# any feature of Qt which has been marked as deprecated (the exact warnings +# depend on your compiler). Please consult the documentation of the +# deprecated API in order to know how to port your code away from it. +DEFINES += QT_DEPRECATED_WARNINGS + +# You can also make your code fail to compile if you use deprecated APIs. +# In order to do so, uncomment the following line. +# You can also select to disable deprecated APIs only up to a certain version of Qt. +#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0 + + +SOURCES += \ + main.cpp \ + mainwindow.cpp + +HEADERS += \ + mainwindow.h + +FORMS += \ + mainwindow.ui + +RESOURCES += \ + pic.qrc diff --git "a/Client/\345\274\240\346\226\207\345\215\223/code/pro_1017/\346\240\207\351\242\230\345\233\276\347\211\207.png" "b/Client/\345\274\240\346\226\207\345\215\223/code/pro_1017/\346\240\207\351\242\230\345\233\276\347\211\207.png" new file mode 100644 index 0000000..b7be7d8 --- /dev/null +++ "b/Client/\345\274\240\346\226\207\345\215\223/code/pro_1017/\346\240\207\351\242\230\345\233\276\347\211\207.png" Binary files differ -- Gitblit v1.8.0