繁体   English   中英

如何使Tkinter窗口在打开时出现而不是最小化?

[英]how to make Tkinter windows appear when opened rather than start minimized?

如何打开Tkinter窗口(例如条目,文本...)并使它们在打开时出现在屏幕上而不是最小化? 我真的不知道该如何开始...我有一些窗户,但是它们被最小化了。 我在互联网上搜索,但没有发现任何可能相关的内容。 我该怎么做 ? 在Windows上使用python(Python 3和Python 2)都非常感谢您的帮助!

编辑:现在,我在这里的评论中提到的问题是我必须强制显示窗口。 但是,当我这样做时,即使我使用一个使之前工作的函数居中,窗口也不会居中

码:

def center(toplevel):
    toplevel.update_idletasks()
    w = toplevel.winfo_screenwidth()
    h = toplevel.winfo_screenheight()
    size = tuple(int(_) for _ in toplevel.geometry().split('+')[0].split('x'))
    x = w/2 - size[0]/2
    y = h/2 - size[1]/2
    toplevel.geometry("%dx%d+%d+%d" % (size + (x, y)))


def paste_func():
    global text_box
    text_box.insert(END, top.clipboard_get())
    button_pressed()


def button_pressed(x=0):
    # This function determines which button was pressed, and closes this menu/message box/etc...
    global pressed
    pressed = x
    destroy_top()


def destroy_top():
    # This function closes this menu/message box/etc...
    global top
    top.iconify()
    top.withdraw()
    top.quit()

def get_text():
    global pressed
    global top
    global text_box

    pressed = 0
    top = Tk()
    top.withdraw()
    top.rowconfigure(0, weight=0)
    top.columnconfigure(0, weight=0)
    top.config(height=0, width=0)
    top.protocol('WM_DELETE_WINDOW', lambda: button_pressed(-1))

    text_box = Entry(top, width=50)
    text_box.focus_set()
    text_box.grid(row=0, column=0)
    but = Button(top, text='Enter', command=button_pressed)
    but.grid(row=0, column=1)
    paste = Button(top, text='Paste', command=paste_func)
    paste.grid(row=0, column=2)

    top.deiconify()
    text_box.focus_set()
    top.after(0, top.focus_force())
    center(top)
    top.mainloop()

    if pressed == -1:
        exit()

    return text_box.get('1.0', index2=END)

window.focus_force()方法执行此操作:

将输入焦点强制到小部件。 这是不礼貌的。 最好等待窗口管理器为您提供焦点。 另请参见下面的.grab_set_global()

有时,如果这不起作用,您可以手动将其强制为:

from Tkinter import *

window = Tk()
window.after(2000, window.focus_force)
window.mainloop()

有时,您在Mac上会遇到问题,可能需要进行一些其他修改,但这在其他地方也可以正常使用(OP未指定任何有关环境的信息)。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM