我有一个项目,需要在QT Creator C ++中构建GUI。
我是QT的新手,我不知道从哪里开始。 GUI的基本知识已经完成,现在我所要做的就是使窗口在单击隐藏的隐藏小部件/按钮内部并将其拖动时移动。
我在代码中添加了以下内容,以实现无边界/无框架/透明窗口
setWindowFlags(Qt::Widget | Qt::FramelessWindowHint);
setAttribute(Qt::WA_NoSystemBackground, true);
setAttribute(Qt::WA_TranslucentBackground, true);
我在窗口的左下角添加了一个隐藏的小部件/按钮,但是我不知道如何继续:)
mainwindow.cpp:
#include "mainwindow.h"
#include "ui_mainwindow.h"
MainWindow::MainWindow(QWidget *parent)
: QMainWindow(parent)
, ui(new Ui::MainWindow)
{
setWindowFlags(Qt::Widget | Qt::FramelessWindowHint);
setAttribute(Qt::WA_NoSystemBackground, true);
setAttribute(Qt::WA_TranslucentBackground, true);
ui->setupUi(this);
this->statusBar()->setSizeGripEnabled(false);
}
MainWindow::~MainWindow()
{
delete ui;
}
void MainWindow::on_ExitButton_clicked()
{
close();
}
void MainWindow::on_dragButton_pressed()
{
}
mainwindow.h:
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
QT_BEGIN_NAMESPACE
namespace Ui { class MainWindow; }
QT_END_NAMESPACE
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
MainWindow(QWidget *parent = nullptr);
~MainWindow();
private slots:
void on_ExitButton_clicked();
void on_dragButton_pressed();
private:
Ui::MainWindow *ui;
};
#endif // MAINWINDOW_H