how to create an ui using tkinter code example
Example 1: how to make a tkinter window
from tkinter import *
mywindow = Tk()
mywindow.title("New Project")
mywindow.geometry("780x640")
mywindow.minsize(540, 420)
mywindow.configure(bg="blue")
mywindow.mainloop()
Example 2: gui in tkinter
from tkinter import *
import os
window = Tk()
window.geometry("450x450")
window.title("Gui App")
window.configure(bg="powder blue")
filename = Entry(window, width=75)
filename.pack()
def runFile():
try:
os.startfile(filename.get())
except:
error = Label(window, text=f"No file found as {filename.get}")
error.pack()
open_file_button = Button(window, text="Run File", command=runFile)
open_file_button.pack()
window.mainloop()