Python开发的简单记事本
---恢复内容开始---
主要是利用python 自带的tkinter 库
程序的基于python3.0以上 ,各个平台都可以使用包括linux ,windows ,OSX,
代码是:
#!/usr/bin/python
from tkinter import *
from tkinter.messagebox import *
from tkinter.filedialog import *
import os
filename=''
def author():
showinfo("作者信息",'本软件由yubenliu完成')
def about():
showinfo('软件归属','本软件版权归属于yubenliu')
def ybl():
global filename
filename=askopenfilename(defaultextension='.txt')
if filename =='':
filename=None
else:
root.title(os.path.basename(filename))
textpad.delete(1.0,END)
f=open(filename,'r')
textpad.insert(1.0,f.read())
f.close()
# 新建文件
def new():
global filename
root.title('未命名文件')
filename=None
textpad.delete(1.0,END)
#保存
def save():
global filename
try:
f=open(filename,'w')
msg=textpad.get(1.0, END)
f.write(msg)
f.close()
except:
saveas()
def saveas():
f=asksaveasfilename(initialfile='为命令的.txt',defaultextension='.txt')
global filename
filename=f
fh=open(f,'w')
msg=textpad.get(1.0,END)
fh.write(msg)
fh.close()
root.title()
root.title(os.path.basename(f))
def cut():
textpad.event_generate('<<Cut>>')
def copy():
textpad.event_generate('<<Copy>>')
def undo():
textpad.event_generate('<<Undo>>')
def redo():
textpad.event_generate('<<Redo>>')
def paste():
textpad.event_generate('<<Paste>>')
def selectall():
textpad.tag_add('sel','1.0',END) root= Tk()
root.title('yubenliu')
root.geometry('500x500+100+100')
menubar= Menu(root)
root.config(menu=menubar)
filemenu=Menu(menubar)
#文件的创建
filemenu.add_command(label='新建',accelerator='ctrl+N ',command=new)
filemenu.add_command(label='打开',accelerator='ctrl+O',command=ybl)
filemenu.add_command(label='保存',accelerator='ctrl+ S',command=save)
filemenu.add_command(label='另存为',accelerator='ctrl+W',command=saveas)
menubar.add_cascade(label='文件',menu=filemenu)
editmenu=Menu(menubar)
#编辑的创建
editmenu.add_command(label='撤销',accelerator='ctrl + Z',command=undo)
editmenu.add_command(label='重做',accelerator='ctrl + y',command=redo)
editmenu.add_separator()
editmenu.add_command(label='剪切',accelerator='ctrl + x',command=cut)
editmenu.add_command(label='复制',accelerator='ctrl + c',command=copy)
editmenu.add_command(label='粘贴',accelerator='ctrl + v',command=paste)
editmenu.add_separator()
editmenu.add_command(label='查找',accelerator='ctrl + F')
editmenu.add_command(label='全选',accelerator='ctrl + A',command=selectall)
menubar.add_cascade(label='编辑',menu=editmenu)
aboutmenu=Menu(menubar)
#关于的创建
aboutmenu.add_command(label='作者',command=author)
aboutmenu.add_command(label='版权',command=about)
aboutmenu.add_command(label='关于')
menubar.add_cascade(label='关于',menu=aboutmenu)
#工具栏
toobar=Frame(root,height=25,bg='light sea green')
shortButton=Button(toobar,text='打开',command=ybl)
shortButton.pack(side=LEFT,padx=5,pady=5)
shortButton=Button(toobar,text='保存',command=save)
shortButton.pack(side=LEFT)
toobar.pack(fill=X,expand=NO)
#状态栏
status=Label(root,text='ln20',bd=1, relief=SUNKEN,anchor=W)
status.pack(side=BOTTOM ,fill=X)
#文本
lnlabel=Label(root,width=2,bg='antique white')
lnlabel.pack(side=LEFT,fill=Y)
textpad=Text(root,undo=True)
textpad.pack(expand=YES,fill=BOTH)
scroll=Scrollbar(textpad)
textpad.config(yscrollcommand=scroll.set)
scroll.config(command= textpad.yview)
scroll.pack(side=RIGHT,fill=Y) root.mainloop()
程序执行的界面:
Python开发的简单记事本的更多相关文章
- Python开发一个简单的BBS论坛
项目:开发一个简单的BBS论坛 需求: 整体参考“抽屉新热榜” + “虎嗅网” 实现不同论坛版块 帖子列表展示 帖子评论数.点赞数展示 在线用户展示 允许登录用户发贴.评论.点赞 允许上传文件 帖子可 ...
- Python开发简单记事本
摘要: 本文是使用Python,结合Tkinter开发简单记事本. 本文的操作环境:ubuntu,Python2.7,采用的是Pycharm进行代码编辑,个人很喜欢它的代码自动补齐功能. 最近很想对p ...
- python socket编程---从使用Python开发一个Socket示例说到开发者的思维和习惯问题
今天主要说的是一个开发者的思维和习惯问题. 思维包括编程的思维和解决一个具体问题的分析思维,分析思路,分析方法,甚至是分析工具. 无论是好习惯还是不好的习惯,都是在者一天一天的思维中形成的.那些不好的 ...
- Python学习笔记-CGI编程(如何在IIS上挂Python开发的Webservice)
一.如何用Python开发一个简单的Webservice 利用python的cgi编程,可以传入参数将结果输出. 定义需要编码以及需要引用的模块 #conding=utf-8 #修正中文乱码 impo ...
- 麦子学院python开发全套完整无加密课程
点击了解更多Python课程>>> 麦子学院python开发全套完整无加密课程 第一阶段:Python基础准备 1.Web前端开发之HTML+CSS基础入门 2.Javascript ...
- Python开发之【简单计算器】
开发一个简单的python计算器 1.实现加减乘除及括号优先级解析 2.用户输入 1 - 2 * ( (60-30 +(-40/5) * (9-2*5/3 + 7 /3*99/4*2998 +10 * ...
- Python开发简单爬虫 - 慕课网
课程链接:Python开发简单爬虫 环境搭建: Eclipse+PyDev配置搭建Python开发环境 Python入门基础教程 用Eclipse编写Python程序 课程目录 第1章 课程介绍 ...
- 用python开发简单ftp程序
根据alex老师视频开发的简单ftp程序,只能实现简单的get功能 ftp客户端程序: #!/usr/bin/env python #_*_ coding:utf-8 _*_ import socke ...
- 作业1开发一个简单的python计算器
开发一个简单的python计算器 实现加减乘除及拓号优先级解析 用户输入 1 - 2 * ( (60-30 +(-40/5) * (9-2*5/3 + 7 /3*99/4*2998 +10 * 568 ...
随机推荐
- luogu P4213 【模板】杜教筛(Sum)
Code: #include <bits/stdc++.h> #include <tr1/unordered_map> using namespace std; using n ...
- 洛谷P2915 [USACO08NOV]奶牛混合起来Mixed Up Cows 状压动归
考场上空间开大了一倍就爆0了QAQ- Code: #include<cstdio> #include<algorithm> #include<cmath> usin ...
- # quill-image-extend-module :实现vue-quill-editor图片上传,复制粘贴,拖拽
改造vue-quill-editor: 结合element-ui上传图片到服务器 quill-image-extend-module vue-quill-editor的增强模块, 功能: 提供图片上传 ...
- Struts2SpringHibernate整合示例,一个HelloWorld版的在线书店(项目源码+详尽注释+单元测试)
Struts2,Spring,Hibernate是Java Web开发中最为常见的3种框架,掌握这3种框架是每个Java Web开发人员的基本功. 然而,很多初学者在集成这3个框架的时候,总是会遇到各 ...
- elasticsearch的安装和使用
准备环境: 环境: win7 64位 jdk1.8.0 elasticsearch2.3.3 elasticsearch2.3.3:https://www.elastic.co/thank-you ...
- Ural 1004 Sightseeing Trip
Sightseeing Trip Time Limit: 2000ms Memory Limit: 16384KB This problem will be judged on Ural. Origi ...
- POJ——T2186 Popular Cows || 洛谷——P2341 [HAOI2006]受欢迎的牛
http://poj.org/problem?id=2186 || https://www.luogu.org/problem/show?pid=2341 Time Limit: 2000MS M ...
- cocos2d-x学习笔记(18)--游戏打包(windows平台)
cocos2d-x学习笔记(18)--游戏打包(windows平台) 之前做好的游戏,都是在vs2008下编译执行的.假设说想把游戏公布到网上或者和其它人一起分享游戏,那就得对游戏 ...
- Darwin流媒体server在windows下搭建
简单介绍 主页: http://dss.macosforge.org/ Darwin Streaming Server (DSS) is an open sourceproject intende ...
- DateForamt和SimpleDateFormat
1.因为DateFormat是抽象类,所以只能用子类来初始化 DateFormat df = new SimpleDateFormat("yyyy--MM--dd HH:MM:ss,属于本年 ...