我在使用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()
答案 0 :(得分:4)
选择单元格进行编辑时,“有效”标签生效。
尝试类似:
self.table.tag_configure('active', foreground='black')