Qt 拖拽图片到QLabel上并显示
代码如下:
1、.cpp代码
#include "mainwindow.h"
#include "ui_mainwindow.h"
#include
#include
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
ui->label->installEventFilter(this);
ui->label->setAcceptDrops(true);// [[1]]: 使label可接受拖放操作
}
MainWindow::~MainWindow()
{
delete ui;
}
bool MainWindow::eventFilter(QObject *watched, QEvent *event)
{
if (watched ==
版权声明:
作者:zhangchen
链接:https://www.techfm.club/p/19254.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。
THE END
二维码
共有 0 条评论