在python中使用customtkinter包时出现值错误[已关闭]

3vpjnl9f  于 2023-02-06  发布在  Python
关注(0)|答案(1)|浏览(197)

这个问题是由打字错误或无法再重现的问题引起的。虽然类似的问题在这里可能是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']不是支持的参数。有关支持的参数,请查看文档。

shyt4zoc

shyt4zoc1#

它应该是font=,如下所示:

label = customtkinter.CTkLabel(frame, text="Attendance System", font=("Roboto", 24))

https://github.com/TomSchimansky/CustomTkinter/wiki/CTkLabel#arguments

相关问题