gpt4 book ai didi

python - overrideredirect(1) 之后的 Tkinter 自定义调整大小事件

转载 作者:行者123 更新时间:2023-12-03 17:23:34 24 4
gpt4 key购买 nike

受此启发 question ,我想为我的根窗口编写我自己的调整大小函数。
但我只是注意到我的代码显示了一些性能问题。如果你快速调整它的大小,你可以看到窗口没有像我希望的那样找到它的高度提示,它“断断续续”。(更像是一个摆动)
有人知道为什么会这样吗?我最好的猜测是 tkinter事件处理程序对它来说太慢了。
也许我做的数学不是最快的方法。
也许我应该说我确实尝试过 update_idletasks()在不同的地点,也有好几次。我尝试过的另一种方法是使用 after方法,但它使情况变得更糟。
无论如何,这是一个示例代码:

import tkinter as tk


class FloatingWindow(tk.Tk):
def __init__(self):
super().__init__()
self.overrideredirect(True)
self.center()

self.label = tk.Label(self, text="Grab the upper-right corner to resize")
self.label.pack(side="top", fill="both", expand=True)

self.grip2 = tk.Label(self,bg='blue')
self.grip2.place(relx=1.0, rely=0, anchor="ne")
self.grip2.bind("<B1-Motion>",self.OnMotion)

def OnMotion(self, event):
abs_x = self.winfo_pointerx() - self.winfo_rootx()
abs_y = self.winfo_pointery() - self.winfo_rooty()
if abs_x >0:
x = self.winfo_rootx()
y = self.winfo_rooty()+abs_y
height = self.winfo_height()-abs_y
if height >0:
self.geometry("%dx%d+%d+%d" % (abs_x,height,
x,y))


def center(self):
width = 300
height = 300
screen_width = self.winfo_screenwidth()
screen_height = self.winfo_screenheight()
x_coordinate = (screen_width/2) - (width/2)
y_coordinate = (screen_height/2) - (height/2)

self.geometry("%dx%d+%d+%d" % (width, height,
x_coordinate, y_coordinate))

app=FloatingWindow()
app.mainloop()
full example
更新
我发现的最优雅的方法是在 Action 事件中添加以下代码:
time.sleep(0.175)
self.update_idletasks()
这样我有更少但更长的斯托特间隔。此外,您可以看到这里发生了什么。
  • Tkinter 首先调整窗口大小
  • 然后检查左上角
  • 毕竟它管理 child

  • 我的机器是:

    Windows 10 Home; x64-base,Intel(R) Core(TM) i3-2120 @ 3.30GHz, 3300MHz, 2Cores



    Python 3.7.2 and tkinter 8.6

    最佳答案

    我能够通过添加 update() 来解决这个问题。在 OnMotion 方法开头的函数

    关于python - overrideredirect(1) 之后的 Tkinter 自定义调整大小事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64066592/

    24 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com