Latest
This commit is contained in:
+7
-2
@@ -115,13 +115,18 @@ if __name__ == "__main__":
|
||||
|
||||
root.iconbitmap(r'Resources/icon1.ico')
|
||||
|
||||
|
||||
# Simply set the theme
|
||||
root.tk.call("source", "Resources/azure.tcl")
|
||||
root.tk.call("set_theme", "dark")
|
||||
|
||||
#Set a minsize for the window, and place it in the middle
|
||||
# Set a minsize for the window, and place it in the middle
|
||||
root.update()
|
||||
root.minsize(400, 200)
|
||||
|
||||
# Footer label in bottom right
|
||||
footer_frame = tk.Frame(root)
|
||||
footer_frame.pack(side=tk.BOTTOM, fill=tk.X)
|
||||
footer_label = tk.Label(footer_frame, text="Made by Hendo 22/07/2025", anchor="e", justify="right", font=("TkDefaultFont", 7, "bold"))
|
||||
footer_label.pack(side=tk.RIGHT, padx=10, pady=5)
|
||||
|
||||
root.mainloop()
|
||||
|
||||
Reference in New Issue
Block a user