Qt编写计算器(界面)

Posted tianxxl

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Qt编写计算器(界面)相关的知识,希望对你有一定的参考价值。

看了几个视频,写了个计算器的界面

#include <QApplication>
#include <QWidget>
#include <QLineEdit>
#include <QPushButton>

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    QWidget* w = new QWidget(NULL,Qt::WindowCloseButtonHint);//没有最大最小化按钮
    QLineEdit* Le = new QLineEdit(w);
    QPushButton* Button[20] = {0};
    const char* BtnText[20]=
    {
        "7","8","9","+","(",
        "4","5","6","-",")",
        "1","2","3","*","<-",
        "0",".","=","/","C"
    };
    Le->move(10,10);
    Le->resize(240,30);
    Le->setReadOnly(true);//文本框只读,不能通过键盘输入
    for(int i = 0;i<4;i++)
    {
        for(int j = 0;j<5;j++)
        {
            Button[i*5+j] = new QPushButton(w);
            Button[i*5+j]->resize(40,40);
            Button[i*5+j]->move(10 + (10 + 40)*j,(10+40) + (10 + 40)*i);
            Button[i*5+j]->setText(BtnText[i*5+j]);
        }
    }
    w->setWindowTitle("计算器");

    w->show();
    w->setFixedSize(w->width(),w->height());//锁定窗口大小
    /*
     *  w->show();
     *   w->setFixedSize(w->width(),w->height());//锁定窗口大小
     * 这两句顺序不能反
     */

    return a.exec();
}

运行界面如下

技术分享图片

 

以上是关于Qt编写计算器(界面)的主要内容,如果未能解决你的问题,请参考以下文章

Qt 计算器界面实现

使用VS2013+QT5.7.0开发简单计算器

Qt编写数据可视化大屏界面电子看板4-布局另存

QT 实用代码片段

一Qt初尝试,做一个QT计算器《QT 入门到实战》

一Qt初尝试,做一个QT计算器《QT 入门到实战》