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 ==

Qt 拖拽图片到QLabel上并显示最先出现在Python成神之路

版权声明:
作者:zhangchen
链接:https://www.techfm.club/p/19254.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>