91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Python怎么使用Qt5實現水平導航欄

發布時間:2023-03-06 10:57:56 來源:億速云 閱讀:180 作者:iii 欄目:開發技術

本篇內容主要講解“Python怎么使用Qt5實現水平導航欄”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“Python怎么使用Qt5實現水平導航欄”吧!

在 Qt5 中可以使用 QWidget 包含兩個水平布局,通過點擊水平布局里的按鈕,實現下標滑動與頁面的切換。

Python怎么使用Qt5實現水平導航欄

可以按照以下步驟來實現上面圖片中的功能:

導入必要的 Qt 包:

from PyQt5.QtCore import QPoint, QPropertyAnimation
from PyQt5.QtWidgets import QVBoxLayout, QHBoxLayout, QPushButton, QLabel

創建 ui_init 函數,接收 self,和外部傳入的列表:

def ui_init(self, datas):

創建一個 list 來保存水平布局里的按鈕:

self.button_list = []

創建兩個水平布局 QHBoxLayout,一個放置 QPushButton, 一個放置 QLabel,并設置水平布局的內容邊距以及組件邊距:

container = QHBoxLayout()
container.setSpacing(0)
container.setContentsMargins(10, 0, 10, 0)
container2 = QHBoxLayout()
container2.setContentsMargins(10, 0, 10, 0)

使用 for 循環來遍歷傳遞進來的字符串列表,并且根據其長度創建 QPushButton,設置 QPushButton 的顯示樣式,最后將 QPushButton 添加進 QHBoxLayout,并且保存在 self.button_list 當中:

for number, data in enumerate(datas):
    btn = QPushButton(data)
    btn.setStyleSheet(
        "QPushButton { border: none; "
        "height: 25px; }"
    )
    container.addWidget(btn)
    self.button_list.append(btn)

創建一個 QLabel 設置其大小和顏色,其中 Label 的寬度為測量 QHBoxLayout 的寬度 / QPushButton 的個數:

self.label = QLabel()
self.label.setContentsMargins(0, 0, 0, 0)
self.label.setFixedWidth(int(710 / len(self.button_list)))
self.label.setFixedHeight(2)
self.label.setStyleSheet("QLabel { background-color: rgb(10, 96, 255); }")

創建一個QPropertyAnimation對象,設置動畫的持續時間為100毫秒,用于實現動畫效果:

self.animation = QPropertyAnimation(self.label, b'pos')
self.animation.setDuration(100)

將 QLabel 添加進水平布局中,并且在其右邊設置一個伸縮量確保 QLabel 初始化時在第一個按鈕下方:

container2.addWidget(self.label)
# 設置伸縮量使label處于左邊
container2.addStretch(1)
self.addLayout(container)
self.addLayout(container2)

使用 for 循環遍歷 self.button_list,讓列表中的 QPushButton 連接槽函數:

for btn in self.button_list:
    btn.clicked.connect(lambda state, b=btn: self.buttonClicked(b))

創建一個槽函數:

def buttonClicked(self, button):

在槽函數中,獲取按鈕和標簽的當前位置:

pos = button.pos()
current_pos = self.label.pos()

設置動畫的起始值和結束值:

start_value = QPoint(current_pos.x(), current_pos.y())
end_value = QPoint(pos.x(), pos.y() + button.height())
self.animation.setStartValue(start_value)
self.animation.setEndValue(end_value)

啟用動畫:

self.animation.start()

以下為完整代碼示例:

from PyQt5.QtCore import QPoint, QPropertyAnimation
from PyQt5.QtWidgets import QVBoxLayout, QHBoxLayout, QPushButton, QLabel, QApplication


class TopTitle(QVBoxLayout):
    def __init__(self, datas):
        super().__init__()
        self.ui_init(datas)

    def ui_init(self, datas):
        self.button_list = []

        container = QHBoxLayout()
        container.setSpacing(0)
        container.setContentsMargins(10, 0, 10, 0)
        container2 = QHBoxLayout()
        container2.setContentsMargins(10, 0, 10, 0)

        for number, data in enumerate(datas):
            # 此時num是元素的序號,data為元素
            # 水平布局包含多個垂直布局
            btn = QPushButton(data)
            btn.setStyleSheet(
                "QPushButton { border: none; "
                "height: 25px; }"
            )
            container.addWidget(btn)
            self.button_list.append(btn)

        self.label = QLabel()
        self.label.setContentsMargins(0, 0, 0, 0)
        self.label.setFixedWidth(int(710 / len(self.button_list))) # 710為手動測量QHBoxLayout的寬度
        self.label.setFixedHeight(2)
        self.label.setStyleSheet("QLabel { background-color: rgb(10, 96, 255); }")

        # 創建一個QPropertyAnimation對象,用于實現動畫效果
        self.animation = QPropertyAnimation(self.label, b'pos')
        self.animation.setDuration(100)  # 設置動畫的持續時間為100毫秒

        container2.addWidget(self.label)
        # 設置伸縮量使label處于左邊
        container2.addStretch(1)
        self.addLayout(container)
        self.addLayout(container2)

        for btn in self.button_list:
            btn.clicked.connect(lambda state, b=btn: self.buttonClicked(b))
            # 這里,我們為 lambda 表達式添加了額外的參數 state,以兼容 QPushButton.clicked 信號的多重重載。
            # 同時,使用默認參數 b=btn 來確保 button 參數在 lambda 表達式中被正確地傳遞。

    def buttonClicked(self, button):
        # 獲取按鈕的位置
        pos = button.pos()

        # 獲取標簽的當前位置
        current_pos = self.label.pos()

        # 設置動畫的起始值和結束值
        start_value = QPoint(current_pos.x(), current_pos.y())
        end_value = QPoint(pos.x(), pos.y() + button.height())

        # 設置動畫的起始值和結束值
        self.animation.setStartValue(start_value)
        self.animation.setEndValue(end_value)

        # 啟動動畫
        self.animation.start()

if __name__ == '__main__':
    app = QApplication([])
    
    title = TopTitle(["7", "8", "9", "+", "7", "8", "9", "+"])
    
    w = QWidget()
    w.resize(710, 200)

	w.setLayout(title)
    w.show()
    
    app.exec_()

最后要實現頁面切換的方法,就是在按鍵的槽函數中,設置 StackedLayout 的 index 就可以實現了,當然也可以在創建對象后,在其他 QWidget 中獲取 TopTitle.button_list 中的 QPushButton,來自定義按鈕的鏈接。這樣一個自適應標簽欄數量的水平導航欄就實現了。

到此,相信大家對“Python怎么使用Qt5實現水平導航欄”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

安阳市| 大港区| 肥城市| 武乡县| 明溪县| 镇原县| 精河县| 嫩江县| 澳门| 宝清县| 夹江县| 萨嘎县| 德江县| 神农架林区| 宁强县| 阿克陶县| 蒙阴县| 萝北县| 百色市| 沽源县| 封丘县| 汤原县| 通许县| 织金县| 山西省| 涡阳县| 攀枝花市| 巨鹿县| 永吉县| 崇仁县| 济南市| 莆田市| 安达市| 奉新县| 凉城县| 沧源| 陕西省| 永寿县| 公安县| 黄浦区| 泸定县|