中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

qt怎么獲取另外窗口的控件值

qt
小億
237
2023-11-08 23:31:23
欄目: 編程語言

要獲取另外窗口的控件值,你可以使用Qt的信號與槽機制來實現。下面是一個示例代碼,演示了如何獲取另一個窗口中一個標簽的文本值:

// 另一個窗口的類
class AnotherWindow : public QWidget
{
    Q_OBJECT

public:
    explicit AnotherWindow(QWidget *parent = nullptr) : QWidget(parent)
    {
        // 創建一個標簽
        label = new QLabel("Hello World", this);
        
        // 創建一個按鈕
        button = new QPushButton("獲取標簽文本", this);
        
        // 連接按鈕的點擊信號與槽函數
        connect(button, &QPushButton::clicked, this, &AnotherWindow::getLabelText);
    }
    
public slots:
    void getLabelText()
    {
        // 獲取標簽的文本值
        QString text = label->text();
        
        // 輸出文本值
        qDebug() << "標簽文本值:" << text;
    }

private:
    QLabel *label;
    QPushButton *button;
};


// 主窗口的類
class MainWindow : public QMainWindow
{
    Q_OBJECT

public:
    MainWindow(QWidget *parent = nullptr) : QMainWindow(parent)
    {
        // 創建一個按鈕
        button = new QPushButton("打開另一個窗口", this);
        
        // 連接按鈕的點擊信號與槽函數
        connect(button, &QPushButton::clicked, this, &MainWindow::openAnotherWindow);
    }
    
public slots:
    void openAnotherWindow()
    {
        // 創建另一個窗口的實例
        AnotherWindow *anotherWindow = new AnotherWindow(this);
        
        // 顯示另一個窗口
        anotherWindow->show();
    }

private:
    QPushButton *button;
};

在上面的代碼中,主窗口類MainWindow中的openAnotherWindow函數創建了另一個窗口類AnotherWindow的實例anotherWindow,并顯示出來。在AnotherWindow類中,我們連接了一個按鈕的點擊信號與槽函數getLabelText。在getLabelText函數中,我們獲取了標簽label的文本值,并通過qDebug輸出到控制臺。

這樣,當我們點擊主窗口的按鈕時,會打開另一個窗口,并在另一個窗口點擊按鈕時獲取標簽的文本值并輸出到控制臺。

0
甘南县| 临西县| 河曲县| 兴海县| 应用必备| 通化县| 安丘市| 依兰县| 河津市| 门源| 鄯善县| 和政县| 舞阳县| 行唐县| 凤庆县| 赤水市| 阜南县| 锦屏县| 连云港市| 澄城县| 浠水县| 扎囊县| 古交市| 鲁山县| 察雅县| 阿巴嘎旗| 永城市| 岳阳县| 远安县| 东海县| 长汀县| 青田县| 黔东| 乐都县| 会理县| 道孚县| 新邵县| 南城县| 大兴区| 吉首市| 曲周县|