コード例 #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
ファイル: windows-test.py プロジェクト: liubiggun/PP4E
 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
ファイル: windows-test.py プロジェクト: liubiggun/PP4E
 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)