• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

Python的Tkinter点击按钮触发事件的例子

python 搞代码 4年前 (2022-01-08) 22次浏览 已收录 0个评论

今天小编就为大家分享一篇Python的Tkinter点击按钮触发事件的例子,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧

如果要开发一个比较大的程序,那么应该先把代码封装起来,在面向对象编程中,就是封装成类

先看代码:

 import tkinter as tk class App: def __init__(self, root): root.title("打招呼测试") frame = tk.Frame(root) frame.pack() self.hi_there = tk.Button(frame, text="打招呼", fg="blue", command=self.say_hi) self.hi_there.pack(side=tk.LEFT) def say_hi(self): print("您刚才通过点击打招呼触发了我:大家好,我是badao!") root = tk.Tk() app = App(root) root.mainloop() 

程序跑起来后:

代码解释:

 #导入tkinter模块并创建别名tk import tkinter as tk class App: def __init__(self, root): #设置标题 root.title("打招呼测试") #创建一个框架,然后在里面添加一个Button组件 #框架的作用一般是在复杂的布局中起到将组件分组的作用 frame = tk.Frame(root) #pack()自动调节组件自身尺寸 frame.pack() #创建一个按钮组件,fg是foreground(前景色) self.hi_there = tk.Button(frame, text="打招呼", fg="blue", command=self.say_hi) #左对齐 self.hi_there.pack(side=tk.LEFT) def say_hi(self): print("您刚才通过点击打招呼触发了我:大家好,我是badao!") #创建一个toplevel的根窗口,并把它作为参数实例化app对象 root = tk.Tk() app = App(root) #开始主事件循环 root.mainloop() 

以上就是Python的Tkinter点击按钮触发事件来源gaodaimacom搞#代%码网的例子的详细内容,更多请关注gaodaima搞代码网其它相关文章!


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:Python的Tkinter点击按钮触发事件的例子
喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址