gpt4 book ai didi

python - 如何在 pyQt 中调整 QFileDialog 的大小?

转载 作者:太空宇宙 更新时间:2023-11-04 05:43:14 25 4
gpt4 key购买 nike

这是我关于显示 QFileDialog 的部分代码。

expand='Image Files(*.mp3 *.wav)'
tips=u'choose the music file'
path = QtGui.QFileDialog.getOpenFileName(self, tips, QtGui.QDesktopServices.storageLocation(QtGui.QDesktopServices.MusicLocation), expand)

然后会出现选择文件的窗口。
但是它的尺寸对我来说太大了。
我要设置的尺寸是320*240。
但是我不知道该怎么做。
希望有人能解决这个问题。

最佳答案

我认为唯一的选择是不使用便利函数 getOpenFileName。您将需要自己创建 Dialog 并连接其信号。

像这样:

def fileSelected(self, filename):
print(filename)

def showDialog(self):
filedialog = QtGui.QFileDialog()
filedialog.fileSelected.connect(self.fileSelected)
filedialog.setFixedSize(320,240)
filedialog.show()

关于python - 如何在 pyQt 中调整 QFileDialog 的大小?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33189314/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com