新手上路
- 积分
- 24
- 金钱
- 24
- 注册时间
- 2019-9-16
- 在线时间
- 4 小时
|
如图是ubuntu下的界面:
到开发板上以后自特别小,按钮也特别小
源代码如下:
#include "mainwindow.h"
#include "ui_mainwindow.h"
MainWindow::MainWindow(QWidget *parent)
: QMainWindow(parent)
, ui(new Ui::MainWindow)
{
ui->setupUi(this);
setWindowState(Qt::WindowMaximized);
setWindowState(Qt::WindowFullScreen);
timers = new QTimer;
timers->start(100);
connect(timers,&QTimer::timeout,[=](){
parValue++;
if(parValue > 100)
parValue = 0;
ui->progressBar->setValue(parValue);
});
}
MainWindow::~MainWindow()
{
delete ui;
}
请教一下,什么问题呢?
|
|