本文整理汇总了Python中Tkinter.Checkbutton.invoke方法的典型用法代码示例。如果您正苦于以下问题:Python Checkbutton.invoke方法的具体用法?Python Checkbutton.invoke怎么用?Python Checkbutton.invoke使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Tkinter.Checkbutton
的用法示例。
在下文中一共展示了Checkbutton.invoke方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: create_other_buttons
# 需要导入模块: from Tkinter import Checkbutton [as 别名]
# 或者: from Tkinter.Checkbutton import invoke [as 别名]
def create_other_buttons(self):
f = self.make_frame()
btn = Checkbutton(f, variable=self.recvar,
text="Recurse down subdirectories")
btn.pack(side="top", fill="both")
btn.invoke()
示例2: create_option_buttons
# 需要导入模块: from Tkinter import Checkbutton [as 别名]
# 或者: from Tkinter.Checkbutton import invoke [as 别名]
def create_option_buttons(self):
f = self.make_frame("Options")
btn = Checkbutton(f, variable=self.engine.revar,
text="Regular expression")
btn.pack(side="left", fill="both")
if self.engine.isre():
btn.invoke()
btn = Checkbutton(f, variable=self.engine.casevar, text="Match case")
btn.pack(side="left", fill="both")
if self.engine.iscase():
btn.invoke()
btn = Checkbutton(f, variable=self.engine.wordvar, text="Whole word")
btn.pack(side="left", fill="both")
if self.engine.isword():
btn.invoke()
if self.needwrapbutton:
btn = Checkbutton(f, variable=self.engine.wrapvar,
text="Wrap around")
btn.pack(side="left", fill="both")
if self.engine.iswrap():
btn.invoke()