博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Pyqt4学习笔记-对话框(更新ing)
阅读量:5735 次
发布时间:2019-06-18

本文共 2674 字,大约阅读时间需要 8 分钟。

QInputDialog:可交互输入单个值的对话框。输入值可以是一个字符串,一个数字或者列表的一项。

#!/usr/bin/python# -*- coding: utf-8 -*-import sysfrom PyQt4 import QtGuifrom PyQt4 import QtCoreclass InputExample(QtGui.QWidget):    def __init__(self):        super(InputExample, self).__init__()        self.initUI()    def initUI(self):        self.button = QtGui.QPushButton('Dialog', self)        self.button.setFocusPolicy(QtCore.Qt.NoFocus)        # 设置聚焦策略,NoFocus表示不接受焦点        self.button.move(20, 20)        self.connect(self.button, QtCore.SIGNAL('clicked()'),                     self.showDialog)        self.setFocus()        # 信号接收之后(调用方法中的组件)获取焦点?        self.label = QtGui.QLineEdit(self)        self.label.setFocusPolicy(QtCore.Qt.NoFocus)        # 设置聚焦策略,NoFocus表示不接受焦点        self.label.move(130, 22)        self.setWindowTitle('InputDialog')        self.setGeometry(300, 300, 350, 80)    def showDialog(self):        # 初始化输入框,定义输入框Title,提示字符        text, ok = QtGui.QInputDialog.getText(self, 'Input Dialog',                                              'Enter your name:')        # ok 在上面作为if的标识用,和显示出来的效果无关        # 输入框显示的默认都是ok,cancel        if ok:            self.label.setText(str(text))            # 如果点击确认,输入的值会出现在上面的label中if __name__ == '__main__':    app = QtGui.QApplication(sys.argv)    ex = InputExample()    ex.show()    app.exec_()

QFileDialog:允许用户选择文件或文件夹,可选择文件来打开和保存

#!/usr/bin/python# -*- coding: utf-8 -*-import sysfrom PyQt4 import QtGuifrom PyQt4 import QtCoreclass OpenFileExample(QtGui.QMainWindow):    def __init__(self):        super(OpenFileExample, self).__init__()        self.initUI()    def initUI(self):        self.textEdit = QtGui.QTextEdit()        self.setCentralWidget(self.textEdit)        self.statusBar()        self.setFocus()        openFile = QtGui.QAction(QtGui.QIcon('icons/open.png'), 'Open', self)        openFile.setShortcut('Ctrl+O')        openFile.setStatusTip('Open new File')        self.connect(openFile, QtCore.SIGNAL('triggered()'), self.showDialog)        menubar = self.menuBar()        fileMenu = menubar.addMenu('&File')        fileMenu.addAction(openFile)        self.setGeometry(300, 300, 350, 300)        self.setWindowTitle('OpenFile')    def showDialog(self):        filename = QtGui.QFileDialog.getOpenFileName(self, 'Open file',                                                     '/home')        # 第一个字符串是标题,第二个字符串指定对话框的工作目录,在windows下用/home也是可以的        fname = open(filename)        # 不能直接打开路径中包含中文的文件,会报错        data = fname.read()        # 读取文件        self.textEdit.setText(data)        # 显示在文本域中app = QtGui.QApplication(sys.argv)ex = OpenFileExample()ex.show()app.exec_()

之后再更新。

转载于:https://www.cnblogs.com/shadow-ccos/p/5208643.html

你可能感兴趣的文章
第七章:数据字典
查看>>
python 字符串 类型互相转换 str bytes 字符串连接
查看>>
service mysqld start
查看>>
linux时间
查看>>
Spring+Mybatis项目中通过继承AbstractRoutingDataSource实现数据库热切换
查看>>
让Alert弹窗只弹出一次
查看>>
用友软件操作流程(新建年度帐、年度结转步骤)
查看>>
mysql权限管理
查看>>
我的友情链接
查看>>
让你快速上手的Glide4.x教程
查看>>
浮动和清除(闭合)浮动
查看>>
微信小程序注册流程
查看>>
LR录制脚本时IE打不开的原因
查看>>
类的基础
查看>>
微博自动化测试
查看>>
Sublime Text 2.0.2,Build 2221注册码
查看>>
js scroll事件
查看>>
day08 文件操作
查看>>
最长递增子序列 动态规划
查看>>
使用列表
查看>>