如何选择QDialogButtonBox的信号与槽
1个回答
展开全部
1、UI中设计了一个QDialogButtonBox,按钮为Cancel和Apply;
2、构造函数连接:
connect(ui->buttonBox, SIGNAL(accepted()), this, SLOT(slotButtonA()));
connect(ui->buttonBox, SIGNAL(rejected()), this, SLOT(slotButtonB()));
以上Cancel按钮能成功响应slotButtonB(),Apply按钮无响应
3、尝试改变slotButtonA()的信号
connect(ui->buttonBox, SIGNAL(clicked(QAbstractButton*)), this, SLOT(slotButtonA()));
connect(ui->buttonBox, SIGNAL(rejected()), this, SLOT(slotButtonB()));
此时则Cancel按钮是先响应了slotButtonA(),后再响应slotButtonB(),而Apply按钮能成功响应
4、自定义的槽内容为
void Test::slotButtonA()
{
QMessageBox::warning(NULL, tr("title"), tr("A"));
}
void Test::slotButtonB()
{
QMessageBox::warning(this, tr("title"), tr("B"));
}
2、构造函数连接:
connect(ui->buttonBox, SIGNAL(accepted()), this, SLOT(slotButtonA()));
connect(ui->buttonBox, SIGNAL(rejected()), this, SLOT(slotButtonB()));
以上Cancel按钮能成功响应slotButtonB(),Apply按钮无响应
3、尝试改变slotButtonA()的信号
connect(ui->buttonBox, SIGNAL(clicked(QAbstractButton*)), this, SLOT(slotButtonA()));
connect(ui->buttonBox, SIGNAL(rejected()), this, SLOT(slotButtonB()));
此时则Cancel按钮是先响应了slotButtonA(),后再响应slotButtonB(),而Apply按钮能成功响应
4、自定义的槽内容为
void Test::slotButtonA()
{
QMessageBox::warning(NULL, tr("title"), tr("A"));
}
void Test::slotButtonB()
{
QMessageBox::warning(this, tr("title"), tr("B"));
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
威孚半导体技术
2024-08-19 广告
2024-08-19 广告
威孚(苏州)半导体技术有限公司是一家专注生产、研发、销售晶圆传输设备整机模块(EFEM/SORTER)及核心零部件的高科技半导体公司。公司核心团队均拥有多年半导体行业从业经验,其中技术团队成员博士、硕士学历占比80%以上,依托丰富的软件底层...
点击进入详情页
本回答由威孚半导体技术提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询