资源简介
十二宫格界面。
欢迎大家学习。
代码片段和文件信息
#include “frmmain.h“
#include “ui_frmmain.h“
#include
frmMain::frmMain(QWidget *parent) :
QWidget(parent)
ui(new Ui::frmMain)
{
ui->setupUi(this);
this->Initstyle();
this->InitForm();
}
frmMain::~frmMain()
{
delete ui;
}
void frmMain::mouseMoveEvent(QMouseEvent *e)
{
if (mousePressed && (e->buttons() && Qt::LeftButton)) {
this->move(e->globalPos() - mousePoint);
e->accept();
}
}
void frmMain::mousePressEvent(QMouseEvent *e)
{
if (e->button() == Qt::LeftButton) {
mousePressed = true;
mousePoint = e->globalPos() - this->pos();
e->accept();
}
}
void frmMain::mouseReleaseEvent(QMouseEvent *)
{
mousePressed = false;
}
void frmMain::Initstyle()
{
this->
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2017-12-27 23:22 QMain\
文件 2448 2015-04-15 12:30 QMain\frmmain.cpp
文件 703 2015-04-15 12:23 QMain\frmmain.h
文件 12711 2015-04-15 12:30 QMain\frmmain.ui
目录 0 2017-12-27 19:54 QMain\image\
文件 11950 2015-04-04 19:45 QMain\image\main1.jpg
文件 42393 2015-04-04 19:45 QMain\image\main2.jpg
文件 165142 2015-04-04 19:46 QMain\image\main3.jpg
文件 20160 2015-04-04 19:47 QMain\image\main4.jpg
文件 9164 2015-04-04 19:47 QMain\image\main5.jpg
文件 28474 2013-08-22 14:45 QMain\image\PNG100.png
文件 24350 2013-08-22 14:45 QMain\image\PNG101.png
文件 24741 2013-08-22 14:45 QMain\image\PNG102.png
文件 19636 2013-08-22 14:45 QMain\image\PNG103.png
文件 19788 2013-08-22 14:45 QMain\image\PNG104.png
文件 30702 2013-08-22 14:45 QMain\image\PNG105.png
文件 26710 2013-08-22 14:45 QMain\image\PNG106.png
文件 17626 2013-08-22 14:45 QMain\image\PNG107.png
文件 13907 2013-08-22 14:45 QMain\image\PNG108.png
文件 31226 2013-08-22 14:45 QMain\image\PNG109.png
文件 25323 2013-08-22 14:45 QMain\image\PNG110.png
文件 30889 2013-08-22 14:45 QMain\image\PNG111.png
文件 30618 2013-08-22 14:45 QMain\image\PNG112.png
文件 28035 2013-08-22 14:45 QMain\image\PNG114.png
文件 31013 2013-08-22 14:45 QMain\image\PNG99.png
文件 226 2015-04-15 12:27 QMain\main.cpp
文件 399 2015-04-15 11:12 QMain\QMain.pro
文件 23786 2017-12-27 23:22 QMain\QMain.pro.user
文件 19916 2015-04-15 12:31 QMain\QMain.pro.user.00f55cf
文件 117173 2015-04-15 12:34 QMain\QQ截图20150415123300.jpg
文件 179104 2015-04-15 12:34 QMain\QQ截图20150415123306.jpg
............此处省略4个文件信息
评论
共有 条评论