PyQt5 滚动条

滑动条

步骤

  • 创建QScorllArea控件

    scrol = QScrollArea(self)
    
  • 创建内容控件

    # 创建控件
    self.topFiller = QWidget()
    # 设置滚动条尺寸
    self.topFiller.setMinimumSize(250, 1000)
    # 添加内容
    for filename in range(20):
        self.MapButton = QPushButton(self.topFiller)
        self.MapButton.setText(str(filename))
        self.MapButton.move(10,filename*40)
    
  • 将内容控件设置到滚动条控件中

    self.scroll.setWidget(self.topFiller)
    

代码

import sys
from PyQt5.QtWidgets import *

class MainWindow(QWidget):
    def __init__(self,):
        super(QWidget,self).__init__()
        self.number = 0
        w = QWidget(self)
        self.topFiller = QWidget()
        self.topFiller.setMinimumSize(250, 1000)
        for filename in range(20):
            self.MapButton = QPushButton(self.topFiller)
            self.MapButton.setText(str(filename))
            self.MapButton.move(10,filename*40)
        ##创建一个滚动条
        self.scroll = QScrollArea(self)
        self.scroll.setWidget(self.topFiller)

        self.vbox = QVBoxLayout()
        self.vbox.addWidget(self.scroll)
        w.setLayout(self.vbox)
  
        self.resize(300, 500)
  
if __name__ == "__main__":
    app = QApplication(sys.argv)
    mainwindow = MainWindow()
    mainwindow.show()
    sys.exit(app.exec_())

你可能感兴趣的:(PyQt5 滚动条)