PyQt文件夹对话框在编译后改变大小

时间:2015-01-11 12:26:12

标签: python dialog pyqt pyinstaller

我正在使用Python 2.7和PyQt4。我写了一个简单的程序,使用QFileDialog.getExistingDirectory()在退出时询问目录。然后它在QMessageBox中显示它并询问用户是否要退出。完整的代码是:

import sys
from PyQt4 import QtGui, QtCore


class Example(QtGui.QWidget):

    def __init__(self):
        super(Example, self).__init__()

        self.initUI()

    def initUI(self):               

        self.setGeometry(300, 300, 250, 150)        
        self.setWindowTitle('Message box')    
        self.show()

    def closeEvent(self, event):

        file = str(QtGui.QFileDialog.getExistingDirectory(self, "Select Directory"))
        reply = QtGui.QMessageBox.question(self, 'Message',
            file, QtGui.QMessageBox.Yes | 
            QtGui.QMessageBox.No, QtGui.QMessageBox.No)

        if reply == QtGui.QMessageBox.Yes:
            event.accept()
        else:
            event.ignore()        


def main():

    app = QtGui.QApplication(sys.argv)
    ex = Example()
    sys.exit(app.exec_())


if __name__ == '__main__':
    main()

它按预期完美地工作 - 尺寸很好,可以调整大小。但是,当我使用PyInstaller编译代码时,文件夹对话框是全屏的,甚至无法调整大小。

如何防止它发生?感谢

修改

要创建规范文件,我使用:

C:\Python\Python279\Scripts\pyi-makespec --icon=icon.ico --noconsole --name="Test" Test.py

要使用spec文件编译代码,我使用:

C:\Python\Python279\Scripts\pyi-build Test.spec

0 个答案:

没有答案