- 已关闭。**此问题为not reproducible or was caused by typos。当前不接受答案。
这个问题是由打字错误或无法再重现的问题引起的。虽然类似的问题在这里可能是on-topic,但这个问题的解决方式不太可能帮助未来的读者。
2天前关闭。
Improve this question
所以我试着用customtkinter构建一个简单的用户界面,这就是我到目前为止所做的。
import customtkinter
customtkinter.set_appearance_mode("dark")
customtkinter.set_default_color_theme("dark-blue")
root = customtkinter.CTk()
root.geometry("500*350")
frame = customtkinter.CTkFrame(master = root)
frame.pack(pady=20, padx=60, fill = "both", expand= True)
label = customtkinter.CTkLabel(master = frame, text="Attendance System" , text_font =
("Roboto", 24))
label.pack(pady=12, padx= 10)
root.mainloop()
并且我得到了这种类型的错误:
ValueError:['text_font']不是支持的参数。有关支持的参数,请查看文档。
1条答案
按热度按时间shyt4zoc1#
它应该是
font=
,如下所示:https://github.com/TomSchimansky/CustomTkinter/wiki/CTkLabel#arguments