Пример #1
0
 def __init__(self):
     PopupWindow.__init__(self, 'mixin', 'Popup')
     content.__init__(self)
Пример #2
0
 def __init__(self):
     PopupWindow.__init__(self, 'popup', 'subclass')
     Button(self, text='Pine', command=self.quit).pack()
     Button(self, text='Sing', command=self.destroy).pack()
Пример #3
0
 def __init__(self):
     PopupWindow.__init__(self, 'popup', 'subclass')
     Button(self, text='Pine', command=self.quit).pack()
     Button(self, text='Sing', command=self.destroy).pack()
Пример #4
0
 def __init__(self):
     PopupWindow.__init__(self, 'mixin', 'Popup')
     content.__init__(self)
Пример #5
0
 def __init__(self):
     PopupWindow.__init__(self, 'Popup', 'subclass')
     content.__init__(self)
Пример #6
0
 def __init__(self):
     PopupWindow.__init__(self, 'Mixin', 'Main')
     content.__init__(self)
Пример #7
0
 def __init__(self, config=ClockConfig, name=''):
     PopupWindow.__init__(self, appname, name)
     clock = Clock(config, self)
     clock.pack(expand=YES, fill=BOTH)