我用python 和pyside6(qt)写了一个图形界面,主要用来操作界面中的表格。
在一个类中调用界面,类中的函数对表格进行操作
class Widget(QWidget, Ui_Form):
def __init__(self):
super().__init__()
self.setupUi(self)
def table(self):
old = update()
h = 10 # 行,居中为10
l = 0 # 列,起始
while True:
new = update()
if new[ > old:
self.bg.item(h, l).setBackground(QtGui.QColor(34, 139, 34)) # 将对应位置设置为绿色
elif new < old:
self.bg.item(h, l).setBackground(QtGui.QColor(227, 23, 13)) # 将最对应位置设置为红色
old = new # 更新旧标志
l += 1 # 列右移动
sleep(1.2)
我想通过一个按钮来在当前操作表格块的上方显示特定的文字,这就需要另一个函数获得table函数中行(h)和列(l)的实时值来确定位置,请问如何从类中的另一个函数获取本函数中变量的运行实时值?
def mark(self):
self.bg.setItem(h - 1, l, QTableWidgetItem('ok')) # 设置标志
能有简易代码更好,十分感谢!元宵节快乐!