溫馨提示×

溫馨提示×

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

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

PyQt5中向單元格添加控件的方法示例

發(fā)布時間:2020-10-07 22:35:21 來源:腳本之家 閱讀:435 作者:放大的EZ 欄目:開發(fā)技術(shù)

1、簡介

pyqt 列表 單元格中 不僅可以添加數(shù)據(jù),還可以添加控件。

我們嘗試添加下拉列表、一個按鈕試試。

PyQt5中向單元格添加控件的方法示例

setItem:將文本放到單元格中
setCellWidget:將控件放到單元格中
setStyleSheet:設(shè)置控件的樣式(Qt StyleSheet)

2、功能實現(xiàn)

# -*- coding: utf-8 -*-

'''
 【簡介】
	PyQT5中 單元格里面放控件

'''

import sys
from PyQt5.QtWidgets import (QWidget, QTableWidget, QHBoxLayout, QApplication, QTableWidgetItem, QAbstractItemView,
        QComboBox, QPushButton)


class Table(QWidget):
 def __init__(self):
  super().__init__()
  self.initUI()

 def initUI(self):
  self.setWindowTitle("QTableWidget 例子")
  self.resize(430, 300)
  conLayout = QHBoxLayout() # 創(chuàng)建水平布局文件
  tableWidget = QTableWidget() # 創(chuàng)建一個列表
  tableWidget.setRowCount(4) # 設(shè)置行數(shù)
  tableWidget.setColumnCount(3) # 設(shè)置列數(shù)
  conLayout.addWidget(tableWidget) # 添加列表到布局

  tableWidget.setHorizontalHeaderLabels(['姓名', '性別', '體重(kg)']) # 設(shè)置水平表頭

  newItem = QTableWidgetItem("張三") # 添加張三 到(0,0)
  tableWidget.setItem(0, 0, newItem)

  comBox = QComboBox() # 新建一個下拉組件
  comBox.addItem("男")
  comBox.addItem("女")
  comBox.setStyleSheet("QComboBox{margin:3px};")
  comBox.currentIndexChanged.connect(self.comboxSelect) #綁定combox select 事件
  tableWidget.setCellWidget(0, 1, comBox) # 添加下拉組件到列表(0,1)

  searchBtn = QPushButton("修改") # 新建一個按鈕
  searchBtn.setDown(True)
  searchBtn.setStyleSheet("QPushButton{margin:3px};")
  searchBtn.clicked.connect(self.butClick) #綁定按鈕點擊事件
  tableWidget.setCellWidget(0, 2, searchBtn) # 添加按鈕到列表(0,2)

  self.setLayout(conLayout)

 def comboxSelect(self,index):
  print("combox select index",index)

 def butClick(self):
  print("button click")

if __name__ == '__main__':
 app = QApplication(sys.argv)
 example = Table()
 example.show()
 sys.exit(app.exec_())

文件參考:PyQt 快速開發(fā)與實踐

到此這篇關(guān)于PyQt5中向單元格添加控件的方法示例的文章就介紹到這了,更多相關(guān)PyQt5 單元格添加控件內(nèi)容請搜索億速云以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持億速云!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI