⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 subclass-existing-widgets.py

📁 Python语言编译器
💻 PY
字号:
from Tkinter import *# This is a program that makes a simple two button applicationclass New_Button(Button):    def callback(self):	print self.counter	self.counter = self.counter + 1    def createWidgets(top):    f = Frame(top)    f.pack()    f.QUIT = Button(f, text='QUIT', foreground='red', command=top.quit)    f.QUIT.pack(side=LEFT, fill=BOTH)    # a hello button    f.hi_there = New_Button(f, text='Hello')    # we do this on a different line because we need to reference f.hi_there    f.hi_there.config(command=f.hi_there.callback)    f.hi_there.pack(side=LEFT)    f.hi_there.counter = 43root = Tk()createWidgets(root)root.mainloop()

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -