本文整理汇总了Python中tk_tools.TK_ROOT.bind方法的典型用法代码示例。如果您正苦于以下问题:Python TK_ROOT.bind方法的具体用法?Python TK_ROOT.bind怎么用?Python TK_ROOT.bind使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类tk_tools.TK_ROOT
的用法示例。
在下文中一共展示了TK_ROOT.bind方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: hide_context
# 需要导入模块: from tk_tools import TK_ROOT [as 别名]
# 或者: from tk_tools.TK_ROOT import bind [as 别名]
selected_sub_item.winfo_rootx()
+ prop_window.winfo_rootx()
- icon_widget.winfo_rootx()
),
y=(
selected_sub_item.winfo_rooty()
+ prop_window.winfo_rooty()
- icon_widget.winfo_rooty()
),
win=prop_window,
)
prop_window.geometry('+{x!s}+{y!s}'.format(x=loc_x, y=loc_y))
# When the main window moves, move the context window also.
TK_ROOT.bind("<Configure>", adjust_position, add='+')
def hide_context(_=None):
"""Hide the properties window, if it's open."""
global is_open, selected_item, selected_sub_item
if is_open:
is_open = False
prop_window.withdraw()
snd.fx('contract')
selected_item = selected_sub_item = None
def init_widgets():
"""Initiallise all the window components."""
global prop_window