簡體   English   中英

如何使用 tkinter 在輔助顯示器中全屏顯示窗口?

[英]How to make a window fullscreen in a secondary display with tkinter?

我知道如何在“主”顯示器中全屏顯示窗口,但即使將我的應用程序窗口移動到連接到我的 PC 的輔助顯示器,當我調用時:

self.master.attributes('-fullscreen', True)

要全屏顯示該窗口,它會在“主”顯示而不是在次要顯示中執行此操作(應用程序的窗口從輔助顯示中消失,並立即全屏顯示在“主”顯示中)。

如何在輔助顯示器中使其全屏顯示?

這適用於 Windows 7:如果第二個屏幕的寬度和高度與第一個相同,您可以使用以下代碼的 win1 或 win2 幾何圖形,具體取決於其相對位置(leftof 或 rightof)以在輔助顯示中全屏顯示:

from Tkinter import *

def create_win():
    def close(): win1.destroy();win2.destroy()
    win1 = Toplevel()
    win1.geometry('%dx%d%+d+%d'%(sw,sh,-sw,0))
    Button(win1,text="Exit1",command=close).pack()
    win2 = Toplevel()
    win2.geometry('%dx%d%+d+%d'%(sw,sh,sw,0))
    Button(win2,text="Exit2",command=close).pack()

root=Tk()
sw,sh = root.winfo_screenwidth(),root.winfo_screenheight()
print "screen1:",sw,sh
w,h = 800,600 
a,b = (sw-w)/2,(sh-h)/2 

Button(root,text="Exit",command=lambda r=root:r.destroy()).pack()
Button(root,text="Create win2",command=create_win).pack()

root.geometry('%sx%s+%s+%s'%(w,h,a,b))
root.mainloop()

嘗試:

from Tkinter import *

rot = Tk()


wth,hgh = rot.winfo_screenwidth(),rot.winfo_screenheight()
#take desktop width and hight (pixel)
_w,_h = 800,600 #root width and hight
a,b = (wth-_w)/2,(hgh-_h)/2 #Put root to center of display(Margin_left,Margin_top)



def spann():
    def _exit():
        da.destroy()

    da = Toplevel()
    da.geometry('%dx%d+%d+%d' % (wth, hgh,0, 0))

    Button(da,text="Exit",command=_exit).pack()
    da.overrideredirect(1)
    da.focus_set()#Restricted access main menu




Button(rot,text="Exit",command=lambda rot=rot : rot.destroy()).pack()


but = Button(rot,text="Show SUB",command=spann)
but.pack()


rot.geometry('%sx%s+%s+%s'%(_w,_h,a,b))
rot.mainloop()
""" Geometry pattern 'WxH+a+b'
        W = Width
        H = Height
        a = Margin_left+Margin_Top"""

視窗,Python 3.8

在這個解決方案中,按F11將使窗口在當前屏幕上全屏顯示。

請注意,根據文檔, self.root.state("zoomed")是 Windows 特定的。

self.root.overrideredirect(True)在 Windows 中很奇怪,可能會產生不需要的副作用。 例如,在此選項處於活動狀態時,我遇到了與更改屏幕配置相關的問題。

#!/usr/bin/env python3
import tkinter as tk


class Gui:
    fullScreen = False

    def __init__(self):
        self.root = tk.Tk()
        self.root.bind("<F11>", self.toggleFullScreen)
        self.root.bind("<Alt-Return>", self.toggleFullScreen)
        self.root.bind("<Control-w>", self.quit)
        self.root.mainloop()

    def toggleFullScreen(self, event):
        if self.fullScreen:
            self.deactivateFullscreen()
        else:
            self.activateFullscreen()

    def activateFullscreen(self):
        self.fullScreen = True

        # Store geometry for reset
        self.geometry = self.root.geometry()

        # Hides borders and make truly fullscreen
        self.root.overrideredirect(True)

        # Maximize window (Windows only). Optionally set screen geometry if you have it
        self.root.state("zoomed")

    def deactivateFullscreen(self):
        self.fullScreen = False
        self.root.state("normal")
        self.root.geometry(self.geometry)
        self.root.overrideredirect(False)

    def quit(self, event=None):
        print("quiting...", event)
        self.root.quit()


if __name__ == '__main__':
    Gui()

2021年有效的超級簡單方法

即使兩個顯示器的分辨率不同,這也有效。 使用geometry將第二個顯示器偏移第一個顯示器的寬度。 geometry字符串的格式為<width>x<height>+xoffset+yoffset

root = tkinter.Tk()

# specify resolutions of both windows
w0, h0 = 3840, 2160
w1, h1 = 1920, 1080

# set up a window for first display, if wanted  
win0 = tkinter.Toplevel()
win0.geometry(f"{w0}x{h0}+0+0")

# set up window for second display with fullscreen 
win1 = tkinter.Toplevel()
win1.geometry(f"{w1}x{h1}+{w0}+0") # <- this is the key, offset to the right by w0
win1.attributes("-fullscreen", True)

只要您知道第一個顯示器的寬度,就可以正常工作。 默認情況下,運行的 X 系統 TK 將第二個監視器放在第一個監視器的右側。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM