返回顶部
首页 > 资讯 > 后端开发 > Python >python--GUI编程--Tkinter2
  • 494
分享到

python--GUI编程--Tkinter2

pythonGUI 2023-01-30 21:01:22 494人浏览 八月长安

Python 官方文档:入门教程 => 点击学习

摘要

编写一个st2.py文件,代码如下#!/usr/bin/env python # coding: utf-8 __author__ = 'www.py3study.com'

编写一个st2.py文件,代码如下

#!/usr/bin/env pythoncoding: utf-8
__author__ = 'www.py3study.com'
import tkinter as tk
class APP(object):
    def __init__(self, master):
        frame = tk.Frame(master)
        frame.pack()
        self.hi_there = tk.Button(frame, text='测试', fg='blue', command=self.say_ceshi)
        self.hi_there.pack()

    def say_ceshi(self):
        print('www.py3study.com')

st = tk.Tk()
app = APP(st)
st.mainloop()

运行程序,应该看到的结果

blob.png

点击测试,点击一次,就会打印一次say_ceshi里面的print内容

blob.png


--结束END--

本文标题: python--GUI编程--Tkinter2

本文链接: https://lsjlt.com/news/178962.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作