“AD -Hintergrundbild mit TKinter” Code-Antworten

AD -Hintergrundbild mit TKinter

app = Tk()
app.title("Welcome")
image2 =Image.open('C:\\Users\\adminp\\Desktop\\titlepage\\front.gif')
image1 = ImageTk.PhotoImage(image2)
w = image1.width()
h = image1.height()
app.geometry('%dx%d+0+0' % (w,h))
#app.configure(background='C:\\Usfront.png')
#app.configure(background = image1)

labelText = StringVar()
labelText.set("Welcome !!!!")
#labelText.fontsize('10')

label1 = Label(app, image=image1, textvariable=labelText,
               font=("Times New Roman", 24),
               justify=CENTER, height=4, fg="blue")
label1.pack()

app.mainloop()
Stupid Stag

AD -Hintergrundbild mit TKinter


background_image=tk.PhotoImage(...)
background_label = tk.Label(parent, image=background_image)
background_label.place(x=0, y=0, relwidth=1, relheight=1)

Nasty Newt

Ähnliche Antworten wie “AD -Hintergrundbild mit TKinter”

Fragen ähnlich wie “AD -Hintergrundbild mit TKinter”

Weitere verwandte Antworten zu “AD -Hintergrundbild mit TKinter” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen