Python GUI编程完整示例


Posted in Python onApril 04, 2019

本文实例讲述了Python GUI编程。分享给大家供大家参考,具体如下:

import os
from time import sleep
from tkinter import *
from tkinter.messagebox import showinfo
class DirList(object):
  def __init__(self, initdir=None):
    self.top = Tk()
    self.label = Label(master=self.top, text='Directory Lister V1.0')
    self.label.pack()
    self.cwd = StringVar(master=self.top)
    self.dirl = Label(self.top, fg='blue', font=('Helvetica', 14, 'bold'))
    self.dirl.pack()
    self.dirfm = Frame(master=self.top)
    self.dirsb = Scrollbar(master=self.dirfm)
    self.dirsb.pack(side=RIGHT,fill=Y)
# fill=Y,垂直填充空间排列
    self.dirs = Listbox(master=self.dirfm, height=15, width=50, yscrollcommand=self.dirsb.set)
    self.dirs.bind('<Double-1>', func=self.setDirAndGo)  
# <Double-1>,双击显示路径列表
    self.dirsb.config(command=self.dirs.yview)
    self.dirs.pack(side=LEFT, fill=BOTH)
    self.dirfm.pack()
    self.dirn = Entry(master=self.top, width=50, textvariable=self.cwd)
    self.dirn.bind('<Return>', func=self.doLS)
    self.dirn.pack()
    self.bfm = Frame(master=self.top)
    self.cleer = Button(master=self.bfm, text='清除', command=self.clrDir, activeforeground='white',
             activebackground='blue')
    self.ls = Button(master=self.bfm, text='显示列表', command=self.doLS, activeforeground='white',
             activebackground='green')
    self.quit = Button(master=self.bfm, text='退出', command=self.top.quit, activeforeground='white',
              activebackground='red')
    self.cleer.pack(side=LEFT)
    self.ls.pack(side=LEFT)
    self.quit.pack(side=LEFT)
    self.bfm.pack()
    if initdir:
      self.cwd.set(os.curdir)
      self.doLS()
  def setDirAndGo(self, ev=None):
    self.last = self.cwd.get()
    self.dirs.config(selectbackground='red')
    chek = self.dirs.get(self.dirs.curselection())
    if not chek:
      chek = os.curdir
    self.cwd.set(chek)
    self.doLS()
  def doLS(self, ev=None):
    error = ''
    tdir = self.cwd.get()
    if not tdir:
      tdir = os.curdir
    if not os.path.exists(tdir):
      error = tdir + ':未找到文件,请检查路径!'
    elif not os.path.isdir(tdir):
      error = tdir + ':不是一个路径!'
    if error:
      # self.cwd.set(error)
      showinfo(title='提示',message=error)
      self.top.update()
      # sleep(2)
      if not (hasattr(self, 'last') and self.last):
        self.last = os.curdir
        self.cwd.set(self.last)
        self.dirs.config(selectbackground='LightSkyBlue')
        self.top.update()
        return
    if not os.path.isdir(tdir):
      self.cwd.set('')
    else:
      self.cwd.set('获取目录内容中...')
    self.top.update()
    dirlist = os.listdir(tdir)
    dirlist.sort()
    os.chdir(tdir)
    self.dirl.config(text=os.getcwd())
    self.dirs.delete(0, END)
    self.dirs.insert(END, os.curdir)
    self.dirs.insert(END, os.pardir)
    for eachfile in dirlist:
      self.dirs.insert(END, eachfile)
    self.cwd.set(os.curdir)
    self.dirs.config(selectbackground='LightSkyBlue')
  def clrDir(self, ev=None):
    self.cwd.set('')
if __name__ == '__main__':
  dir = DirList(os.curdir)
  mainloop()

效果如下:

Python GUI编程完整示例

希望本文所述对大家Python程序设计有所帮助。

Python 相关文章推荐
python中循环语句while用法实例
May 16 Python
Python线程指南详细介绍
Jan 05 Python
python topN 取最大的N个数或最小的N个数方法
Jun 04 Python
python实现内存监控系统
Mar 07 Python
详解Django中六个常用的自定义装饰器
Jul 04 Python
Python datetime和unix时间戳之间相互转换的讲解
Apr 01 Python
详解Python的数据库操作(pymysql)
Apr 04 Python
实例详解Python装饰器与闭包
Jul 29 Python
关于Python-faker的函数效果一览
Nov 28 Python
python使用paramiko实现ssh的功能详解
Mar 06 Python
jupyter notebook oepncv 显示一张图像的实现
Apr 24 Python
Python实现猜拳与猜数字游戏的方法详解
Apr 06 Python
Python使用sax模块解析XML文件示例
Apr 04 #Python
详解小白之KMP算法及python实现
Apr 04 #Python
Python魔法方法功能与用法简介
Apr 04 #Python
详解pandas.DataFrame中删除包涵特定字符串所在的行
Apr 04 #Python
pandas删除指定行详解
Apr 04 #Python
详解python之heapq模块及排序操作
Apr 04 #Python
python实现kmp算法的实例代码
Apr 03 #Python
You might like
windows下PHP APACHE MYSQ完整配置
2007/01/02 PHP
PHP开发规范手册之PHP代码规范详解
2011/01/13 PHP
PHP中Socket连接及读写数据超时问题分析
2016/07/19 PHP
PHP实现微信图片上传到服务器的方法示例
2017/06/29 PHP
PDO::setAttribute讲解
2019/01/29 PHP
css把超出的部分显示为省略号的方法兼容火狐
2008/07/23 Javascript
javascript实现图片循环渐显播放的方法
2015/02/24 Javascript
JS中的Replace方法使用经验分享
2015/05/20 Javascript
JavaScript中字符串拼接的基本方法
2015/07/07 Javascript
Javascript的动态增加类的实现方法
2016/10/20 Javascript
jQuery插件HighCharts实现2D柱状图、折线图的组合多轴图效果示例【附demo源码下载】
2017/03/09 Javascript
nodejs+websocket实时聊天系统改进版
2017/05/18 NodeJs
详解vue-resource promise兼容性问题
2017/06/20 Javascript
详解用webpack把我们的业务模块分开打包的方法
2017/07/20 Javascript
angular2路由切换改变页面title的示例代码
2017/08/23 Javascript
Vue.js实现双向数据绑定方法(表单自动赋值、表单自动取值)
2018/08/27 Javascript
Python常见数据结构详解
2014/07/24 Python
推荐11个实用Python库
2015/01/23 Python
Python实现二维有序数组查找的方法
2016/04/27 Python
python装饰器初探(推荐)
2016/07/21 Python
Python 实现引用其他.py文件中的类和类的方法
2018/04/29 Python
django反向解析URL和URL命名空间的方法
2018/06/05 Python
使用Python和百度语音识别生成视频字幕的实现
2020/04/09 Python
python中什么是面向对象
2020/06/11 Python
Python调用shell cmd方法代码示例解析
2020/06/18 Python
Python使用OpenPyXL处理Excel表格
2020/07/02 Python
matplotlib源码解析标题实现(窗口标题,标题,子图标题不同之间的差异)
2021/02/22 Python
台湾旅游网站:雄狮旅游网
2017/08/16 全球购物
Tomcat的缺省是多少,怎么修改
2014/04/09 面试题
销售工作人员的自我评价分享
2013/11/10 职场文书
趣味比赛活动方案
2014/02/15 职场文书
2014县政府领导班子三严三实对照检查材料思想汇报
2014/09/26 职场文书
2014年采购工作总结
2014/11/20 职场文书
2019银行员工个人工作自我鉴定
2019/06/27 职场文书
详解thinkphp的Auth类认证
2021/05/28 PHP
解决Redis启动警告问题
2022/02/24 Redis