第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

信號(hào) QscrollArea

信號(hào) QscrollArea

慕尼黑5688855 2023-02-07 09:34:39
我想知道是否有可能在每次調(diào)整窗口大小時(shí)有信號(hào)或其他東西知道滾動(dòng)何時(shí)可用以及何時(shí)不再可用?import sysfrom PyQt5.QtCore import *from PyQt5.QtWidgets import *class Widget(QWidget):    def __init__(self, parent= None):        super(Widget, self).__init__()        widget = QWidget()        layout = QVBoxLayout(self)        for _ in range(10):            btn = QPushButton()            layout.addWidget(btn)        widget.setLayout(layout)        scroll = QScrollArea()        scroll.setVerticalScrollBarPolicy(Qt.ScrollBarAsNeeded)        scroll.setWidget(widget)        vLayout = QVBoxLayout(self)        vLayout.addWidget(scroll)        self.setLayout(vLayout)if __name__ == '__main__':    app = QApplication(sys.argv)    dialog = Widget()    dialog.show()    app.exec_()
查看完整描述

1 回答

?
弒天下

TA貢獻(xiàn)1818條經(jīng)驗(yàn) 獲得超8個(gè)贊

由于 QScrollBar 通常僅在其范圍最大值大于 0 時(shí)才可見,因此您可以只檢查該值。


class Widget(QWidget):

    def __init__(self, parent= None):

        # ....

        # note that the scroll area is now an instance member

        self.scroll = QScrollArea()

        self.scroll.setVerticalScrollBarPolicy(Qt.ScrollBarAsNeeded)

        self.scroll.setWidget(widget)

        self.scroll.verticalScrollBar().rangeChanged.connect(self.checkScrollBarRange)

        vLayout = QVBoxLayout(self)

        vLayout.addWidget(self.scroll)

        self.setLayout(vLayout)


        # the next is important when resizing the widget containing the scroll area

        self.scroll.installEventFilter(self)


    def eventFilter(self, source, event):

        if source == self.scroll and event.type() == QEvent.Resize:

            self.checkScrollBarRange()

        return super().eventFilter(source, event)


    def checkScrollBarRange(self):

        if (self.scroll.verticalScrollBarPolicy() != Qt.ScrollBarAlwaysOff and

            self.scroll.verticalScrollBar().maximum()):

                print('vertical scroll bar IS visible')

        else:

            print('vertical scroll bar NOT visible')


查看完整回答
反對(duì) 回復(fù) 2023-02-07
  • 1 回答
  • 0 關(guān)注
  • 148 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)