我有一个包含一个按钮,一个父部件。 当按下按钮,我想直接打开一个无国界的(即没有Windows装饰按钮)窗口对准它的左侧的父控件下方。 我很困惑,只有这样,(似乎)设置窗口的位置使用.geometry()
但糟糕的是,我似乎无法得到父窗口部件的绝对坐标-我需要.geometry()
,只从父亲的父亲的偏移量。 到目前为止,我的代码是:
# This is the child which appears when the button is pressed.
class ChildPopUpWindow(Frame):
def __init__(self, parentWgdt):
win = Toplevel(parentWgdt)
geom = str(parentWgdt.winfo_x()) + '+' + str(parentWgdt.winfo_y() + parentWgdt.winfo_height())
win.overrideredirect(1) # No win decoration.
win.bd = 10
win.relief = GROOVE
win.geometry( geom )
Frame.__init__(self, win)
# etc. etc.
# ... and this is the handler for the button being pressed.
def onDropDown(self):
popUp = ChildPopUpWindow(self)
这并不一个窗口,但相对弹出到桌面,而不是父窗口部件。 它似乎也没有考虑边框厚度和救济,据我所看到的。 任何人都可以提供一种方式,可以做到这一点? 是.geometry()
的去还是有更好的方法呢?