Python Forum
[Tkinter] DUAL WINDOWS...
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[Tkinter] DUAL WINDOWS...
#5
You did not define the Label nor pack or place the Label widget which needs to be done for it to be published to the screen.
Here it is with the font size changed to 12 so it is fits within the windows.

from tkinter import *

window_left = Tk()
window_left.geometry("300x300")
window_left.configure(bg='black')
window_left.title("LEFT")

window_right = Toplevel()
window_right.geometry("300x300")
window_right.configure(bg='black')
window_right.title("RIGHT")

win_left = Label(window_left, text="HELLO WORLD FROM LEFT", font=("Droid Sans Fallback", 12), fg="White", bg="black")
win_left.pack()

win_right = Label(window_right, text="HELLO WORLD FROM RIGHT", font=("Droid Sans Fallback", 12), fg="White", bg="black")
win_right.pack()

window_right.mainloop()
window_left.mainloop()
"Often stumped... But never defeated."
Reply


Messages In This Thread
DUAL WINDOWS... - by ATARI_LIVE - Sep-26-2020, 04:20 PM
RE: DUAL WINDOWS... - by deanhystad - Sep-26-2020, 04:48 PM
RE: DUAL WINDOWS... - by DT2000 - Sep-26-2020, 09:23 PM
RE: DUAL WINDOWS... - by ATARI_LIVE - Sep-27-2020, 12:25 AM
RE: DUAL WINDOWS... - by DT2000 - Sep-27-2020, 04:21 AM
RE: DUAL WINDOWS... - by ATARI_LIVE - Sep-27-2020, 11:35 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Dual Tkinter windows and shells Astrikor 6 4,022 Sep-03-2020, 10:09 PM
Last Post: Astrikor

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020