我使用的Tkinter创建一个8×8矩阵按钮,其中,当所述各个按钮被按下添加到最终列表(例如finalList =((0,0),(5,7),(6,6),... ),让我快速创建的8x8(X,Y)坐标图像。我已经创建了按钮的窗口,但现在有问题,试图在函数中引用这些按钮添加到列表中甚至改变的颜色按键
我已阅读,一旦创建按钮,并创建了另一个移动到该按钮参考。 我怀疑我需要使用字典或二维阵列来存储按钮的所有这些引用,但我在努力找出解决方案。
from tkinter import *
class App:
def updateChange(self):
'''
-Have the button change colour when pressed
-add coordinate to final list
'''
x , y = self.xY
self.buttons[x][y].configure(bg="#000000")
def __init__(self, master):
frame = Frame(master)
frame.pack()
self.buttons = [] # Do I need to create a dict of button's so I can reference the particular button I wish to update?
for matrixColumn in range(8):
for matrixRow in range(8):
self.xY = (matrixColumn,matrixRow)
stringXY = str(self.xY)
self.button = Button(frame,text=stringXY, fg="#000000", bg="#ffffff", command = self.updateChange).grid(row=matrixRow,column=matrixColumn)
self.buttons[matrixColumn][matrixRow].append(self.button)
root = Tk()
app = App(root)
root.mainloop()
8×8矩阵的例子