热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

window上记事本python_Python+PyQt4实现记事本功能

第一步:PyQt4Designer设计程序界面该部分设计类同VisvalStudio内的设计,改下各部件的objectName!设计

第一步:

PyQt4 Designer设计程序界面

该部分设计类同Visval Studio内的设计,改下各部件的objectName!

设计完保存为editor.ui

第二步:

将.ui文件编译成.py文件

cmd.exe

cd 到改文件所在的文件夹

然后输入pyuic4 editor.ui > editor.py

第三步:

新建start.py,输入程序:

import sys

from PyQt4 import QtCore, QtGui      #调用库函数

from editor import Ui_notepad

class StartQt4(QtGui.QMainWindow):

def __init__(self, parent=None):

QtGui.QWidget.__init__(self, parent)

self.ui = Ui_notepad()

self.ui.setupUi(self)

QtCore.QObject.connect(self.ui.button_open,QtCore.SIGNAL("clicked()"), self.file_dialog)     #open按钮被点击后跳到自定义函数file_dialog

QtCore.QObject.connect(self.ui.button_save,QtCore.SIGNAL("clicked()"), self.file_save)

def file_dialog(self):

fd = QtGui.QFileDialog(self)

self.filename = fd.getOpenFileName()    #getOpenFileName()函数   “打开”

from os.path import isfile

if isfile(self.filename):

s = open(self.filename,'r').read()

self.ui.editor_window.setPlainText(s)

def file_save(self):

fd =  QtGui.QFileDialog()

self.filename =fd.getSaveFileName()       #getSaveFileName()函数     “另存为”

fobj =open(self.filename,'w')

fobj.write(self.ui.editor_window.toPlainText())

fobj.close()

self.ui.editor_window.setText('File saved!!')

if __name__ == "__main__":

app = QtGui.QApplication(sys.argv)

myapp = StartQt4()

myapp.show()

sys.exit(app.exec_())

第四步:编译

相关截图如下:

1.程序编译后的出现的界面

2. open file 读文件

3.save file 保存文件

4.保存成功

ok,study more...

©著作权归作者所有:来自51CTO博客作者neo1989的原创作品,如需转载,请注明出处,否则将追究法律责任

编程PythonPyQt4Python



推荐阅读
author-avatar
前前后后zzyyix
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有