qt stacked widget界面中如何用按钮实现换页
想使用Stackedwidget实现页面切换。在stackedwidget中添加两个按钮,想要实现的功能是实现上一页和下一页的切换。voidfindwindow::on_...
想使用Stacked widget实现页面切换。在stacked widget中添加两个按钮,想要实现的功能是实现上一页和下一页的切换。
void findwindow::on_button1_clicked()
{
}
跳到槽的内容该如何写,才能实现这个功能 展开
void findwindow::on_button1_clicked()
{
}
跳到槽的内容该如何写,才能实现这个功能 展开
展开全部
对象指针->setCurrentIndex(xxx);
xxx是你想要跳转页面的索引值
xxx是你想要跳转页面的索引值
追问
void findwindow::on_button_clicked()
{
connect(ui->button,SIGNAL(clicked()),this,SLOT(slot1));
}
void findwindow::slot1()
{
ui->stackedWidget->setCurrentIndex(1);
}
我已经这么尝试过了,但是还是不能跳转页面
追答
connect(ui->button,SIGNAL(clicked()),this,SLOT(slot1));
connect(ui->button,SIGNAL(clicked()),this,SLOT(slot1()));
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询