Форум сайта python.su
Всем привет, задача: необходимо выводить дополнительное окно на второй экран. Для этого у tkinter.Toplevel есть специальная опция опция “screen”
import tkinter root = tkinter.Tk() top = tkinter.Toplevel(root, screen = "??????") root.mainloop()
_tkinter.TclError: couldn't connect to display "SAM02A4"
screen - Specifies the screen on which to place the new window.
Any valid screen name may be used, even one associated with a different display.
Defaults to the same screen as its parent. This option is special in that it may not be
specified via the option database, and it may not be modified with the configure method.
Офлайн