QT开发中文网

窗口再加一个点击关闭按钮

可以通过在 MainWindow 类中添加一个 “Close” 按钮来实现关闭窗口的功能。以下是修改后的代码:

#include <QApplication>
#include <QWidget>
#include <QPushButton>
#include <QFileDialog>
#include <QSoundEffect>

class MainWindow : public QWidget {
public:
    MainWindow(QWidget *parent = nullptr) : QWidget(parent) {
        QPushButton *openButton = new QPushButton("Open File", this);
        connect(openButton, &QPushButton::clicked, this, &MainWindow::openFile);

        QPushButton *closeButton = new QPushButton("Close", this);
        connect(closeButton, &QPushButton::clicked, this, &MainWindow::close);

        QHBoxLayout *layout = new QHBoxLayout;
        layout->addWidget(openButton);
        layout->addWidget(closeButton);

        setLayout(layout);
    }

private slots:
    void openFile() {
        QString filePath = QFileDialog::getOpenFileName(this, "Select WAV File", "", "WAV Files (*.wav)");
        if (!filePath.isEmpty()) {
            playAudio(filePath);
        }
    }

    void playAudio(const QString& filePath) {
        QSoundEffect *effect = new QSoundEffect;
        effect->setSource(QUrl::fromLocalFile(filePath));
        effect->setVolume(0.5);  // 设置音量,范围为0-1
        effect->play();
    }
};

int main(int argc, char **argv) {
    QApplication app(argc, argv);

    MainWindow mainWindow;
    mainWindow.show();

    return app.exec();
}

这个示例中,在 MainWindow 类中添加了一个名为 “Close” 的按钮,并连接到 close() 槽函数,用于关闭窗口。同时使用了水平布局管理器 QHBoxLayout 将两个按钮放在一行显示。点击 “Close” 按钮即可关闭窗口。


内容由零声教学AI助手提供,问题来源于学员提问

本站部分文章来源于网络,版权归原作者所有,如有侵权请联系站长删除。
转载请注明出处:https://qt.0voice.com/?id=12012

分享:
扫描分享到社交APP
上一篇
下一篇
发表列表
游客 游客
此处应有掌声~
评论列表

还没有评论,快来说点什么吧~

联系我们

在线咨询: 点击这里给我发消息

微信号:3007537140

上班时间: 10:30-22:30

关注我们
x

注册

已经有帐号?