本文整理汇总了Python中tkinter.Checkbutton.var方法的典型用法代码示例。如果您正苦于以下问题:Python Checkbutton.var方法的具体用法?Python Checkbutton.var怎么用?Python Checkbutton.var使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类tkinter.Checkbutton
的用法示例。
在下文中一共展示了Checkbutton.var方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: __init__
# 需要导入模块: from tkinter import Checkbutton [as 别名]
# 或者: from tkinter.Checkbutton import var [as 别名]
def __init__(self, **kwargs):
super().__init__(**kwargs)
self._isReady = True
self.vsb = Scrollbar(self, orient="vertical")
self.text = Text(
self, height = 10,
yscrollcommand=self.vsb.set,
bg = self.master.cget('bg'),
wrap = 'word')
self.vsb.config(command=self.text.yview)
self.vsb.pack(side='right', fill='y')
self.text.pack(side='left', fill='both', expand=True)
# Create the list of checkboxes
self._listOfTypes = []
for currType in dsTypes.__all__:
v = BooleanVar(value = 1)
cb = Checkbutton(self, text = '%s' % currType, anchor = W,
width = 15, variable = v)
cb.var = v # Easy access to checkbox's current value
e = Entry(self)
e.delete(0, END)
e.insert(0, '<suffix>.<file_extension>')
self._listOfTypes.append((cb, e))
self.text.window_create('end', window=cb)
self.text.window_create('end', window=e)
self.text.insert('end', '\n') # Forces one checkbox per line
# Insert help message
self.text.insert('end', self.__doc__)
# This MUST follow insertion and positioning of
# the checkboxes/entries
self.text.config(state = DISABLED)