【QT】其他常用控件1

新建项目

【QT】其他常用控件1_第1张图片

scrollArea

滚动

【QT】其他常用控件1_第2张图片

toolBox

【QT】其他常用控件1_第3张图片

插入

【QT】其他常用控件1_第4张图片

tabWidget

【QT】其他常用控件1_第5张图片

stackedWidget

【QT】其他常用控件1_第6张图片

切换

【QT】其他常用控件1_第7张图片

索引是0

【QT】其他常用控件1_第8张图片

运行后,没有切换按钮,结合pushbutton,加两个Button

【QT】其他常用控件1_第9张图片

代码

#include "widget.h"
#include "ui_widget.h"

Widget::Widget(QWidget *parent)
    : QWidget(parent)
    , ui(new Ui::Widget)
{
    ui->setupUi(this);

    // 设置默认选择第一个
    ui->stackedWidget->setCurrentIndex(0);
    connect(ui->Button1, &QPushButton::clicked, this, [=]() {
        // 设置当前索引
        ui->stackedWidget->setCurrentIndex(0);
    });

    connect(ui->Button2, &QPushButton::clicked, this, [=]() {
        // 设置当前索引
        ui->stackedWidget->setCurrentIndex(1);
    });
}

Widget::~Widget()
{
    delete ui;
}

结果

【QT】其他常用控件1_第10张图片

frame

基本同Widget

comboBox

【QT】其他常用控件1_第11张图片

代码

    ui->comboBox->addItem("奔驰");
    ui->comboBox->addItem("宝马");
    ui->comboBox->addItem("保时捷");

结果

【QT】其他常用控件1_第12张图片

案例,点击按钮,定位到保时捷

代码

    ui->comboBox->addItem("奔驰");
    ui->comboBox->addItem("宝马");
    ui->comboBox->addItem("保时捷");

    connect(ui->Button3, &QPushButton::clicked, this, [=]() {
//        ui->comboBox->setCurrentIndex(2);
        ui->comboBox->setCurrentText("保时捷");
    });

结果

【QT】其他常用控件1_第13张图片

你可能感兴趣的:(QT,1024程序员节)