首先我只是尝试使用:
missed_list_combobox.config(foreground="red")
然后我试图设置新的风格:
style_missed_combobox = tkinter.ttk.Style()
style_missed_combobox.configure("Red.TCombobox", foreground="red")
并在创建组合框小部件后使用它。
missed_list_combobox = tkinter.ttk.Combobox(frame4, state="readonly", width=32, style="Red.TCombobox")
missed_list_combobox.grid(row=2, column=3, padx=2, sticky="w", pady=3)
但同样......它只是改变组合框中顶部元素的颜色......而不是整个下拉元素......我怎样才能改变所有下拉元素的颜色文本......?
提前致谢, eliran