1
0
mirror of https://gitee.com/drabel/LibQQt.git synced 2025-01-04 10:18:44 +08:00
LibQQt/test/shadowwidget/mainwindow.cpp
tianduanrui 88ca0d43f1 更新一部分注释。
增加shadowwidget例程,但是似乎在windows下无法正常shadow。
2019-08-23 07:52:21 +08:00

17 lines
277 B
C++

#include "mainwindow.h"
#include "ui_mainwindow.h"
#include "qqtshadowwidget.h"
MainWindow::MainWindow ( QWidget* parent ) :
QMainWindow ( parent ),
ui ( new Ui::MainWindow )
{
ui->setupUi ( this );
}
MainWindow::~MainWindow()
{
delete ui;
}