Python Forum
[Tkinter] DUAL WINDOWS...
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[Tkinter] DUAL WINDOWS...
#1
My goal is dual windows as left and right for example:
from tkinter import *

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

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

Label(window_left, text="left", fg="White")
Label(window_right, text="right", fg="White")

window_right.mainloop()
window_left.mainloop()
no print text at all.. something I missed in the code?

I looked in google. they keep talk about buttons, I do not want that.
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 3,987 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