我在使用Python的tkinter模块制作的应用程序中使用tktable.
当我选择一个单元格并键入它时,文本的颜色为白色,这很难阅读.例如,如何将这种颜色更改为黑色.
我已经更改了“前景”颜色,但没有改变.
self.table = tktable.Table(self, rows=5, cols=5, multiline=0, font=("Helvetica", 10), foreground='Red', background='White', cache=True, colstretchmode='all')
self.table.grid(row=0, column=1, padx=10, pady=10, sticky='e,w')
找到这个想法的人的完整解决方案:
import Tkinter as tk
import tktable
class App(tk.Frame):
def __init__(self, parent):
tk.Frame.__init__(self, parent)
self.parent = parent
self.Main()
self.grid()
def Main(self):
self.table = tktable.Table(self, rows=5, cols=5, multiline=0, font=("Helvetica", 10), foreground='Black', background='White', cache=True, colstretchmode='all')
self.table.tag_configure('active', foreground='black') # <<<ADDED LINE/ SOLUTION
self.table.grid(row=0, column=0, padx=10, pady=10, sticky='e,w')
if __name__ == "__main__":
root = tk.Tk()
app = App(root)
app.mainloop()
解决方法:
选择一个单元进行编辑时,“活动”标签生效.
尝试类似:
self.table.tag_configure('active', foreground='black')