Java教程

Qt右键菜单

本文主要是介绍Qt右键菜单,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

Qt默认不开启菜单

思路

  1. 允许启用自定义菜单
  2. 定义菜单
  3. 定义菜单中的动作的信号与槽
## 头文件
private:
    Ui::Widget *ui;

    QMenu *mun = nullptr;

private slots:
    void openMneu();
	
## 源文件
    // ---> 使用自定义右键菜单
    this->setContextMenuPolicy(Qt::CustomContextMenu); 
    // ---> 绑定信号
    connect(this,&Widget::customContextMenuRequested, this, &Widget::openMneu);
    // ---> 右键菜单
    mun = new QMenu();
	
## 槽函数

void Widget::openMneu()
{
    QAction exp1("动作1", this);
    QAction exp2("动作2", this);
    mun->addAction(&exp1);
    mun->addAction(&exp2);
    mun->exec(QCursor::pos());
}

菜单中的两个动作可以再绑定QAction的triggered信号与槽函数。

这篇关于Qt右键菜单的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!