本文整理汇总了Python中tile.Tile.cmd_untile方法的典型用法代码示例。如果您正苦于以下问题:Python Tile.cmd_untile方法的具体用法?Python Tile.cmd_untile怎么用?Python Tile.cmd_untile使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类tile.Tile
的用法示例。
在下文中一共展示了Tile.cmd_untile方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: cmd_untile
# 需要导入模块: from tile import Tile [as 别名]
# 或者: from tile.Tile import cmd_untile [as 别名]
def cmd_untile(self):
Tile.cmd_untile(self)
if self.store:
for cont in self.store.all()[:]:
cont.remove(reset_window=True)
self.store.reset()
示例2: cmd_untile
# 需要导入模块: from tile import Tile [as 别名]
# 或者: from tile.Tile import cmd_untile [as 别名]
def cmd_untile(self):
assert self.root
Tile.cmd_untile(self)
for win in self.iter_hidden():
win.set_below(False)
for child in self.root.childs():
child.cont.remove(reset_window=True)
self.root = None