Schematic introduction to QT programming under Windows

Source: Internet
Author: User

QT Creator Download

Http://pan.baidu.com/s/1hsqBQPe

Filename

qt-opensource-windows-x86-mingw492-5.6.0


An installation














Quite large, after being installed 5G.


Two Hello World programs 1 simple signals and slots











Place a push button on the form, and change the button text to "Exit";

Locate the signal and slot editor;

Edit the following signals and slots;
Run, click the button to exit the program.

2 Hello World program new Empty project;
Add CPP file;


Operation Result:

#include <QApplication> #include <qlabel>int main (int argc, char *argv[]) {        qapplication A (argc, argv); C1/>qlabel *label = new Qlabel ("Hello, world!");        Label->show ();        return a.exec ();}

Error:
Qapplication:no such file or directory
The workaround is to add a line of QT + = widgets to the Helloworld.pro project file
SOURCES + =     HELLOWORLD.CPPQT + widgets

QT Tutorial Resource Links
http://blog.51cto.com/zt/20/1/
QT Learning Path: from Beginner to proficient

Schematic introduction to QT programming under Windows

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.