This repository has been archived on 2026-05-28. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
DRAwer_2_0/DRAWer_2_0.cpp
Anton Kamalov e613b4f004 Initial commit
2025-12-06 16:01:44 +03:00

19 lines
263 B
C++

#include "DRAWer_2_0.h"
DRAWer_2_0::DRAWer_2_0(QWidget *parent)
: QMainWindow(parent)
{
ui.setupUi(this);
counter = 0;
}
DRAWer_2_0::~DRAWer_2_0()
{}
void DRAWer_2_0::on_pushButton_clicked()
{
ui.label->setText(QString::number(counter++));
}