Advertisement
Felanpro

Simple program

Jul 3rd, 2016
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #include "mainwindow.h"
  2. #include "ui_mainwindow.h"
  3.  
  4. MainWindow::MainWindow(QWidget *parent) :
  5.     QMainWindow(parent),
  6.     ui(new Ui::MainWindow)
  7. {
  8.     ui->setupUi(this);
  9. }
  10.  
  11. MainWindow::~MainWindow()
  12. {
  13.     delete ui;
  14. }
  15.  
  16. void MainWindow::on_pushButton_clicked() //When button is clicked.
  17. {
  18.     ui->label->setText("hello world!");
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement