gpt4 book ai didi

python - 如何调整 QInputDialog、PyQt 的大小

转载 作者:太空宇宙 更新时间:2023-11-03 12:16:41 24 4
gpt4 key购买 nike

我在这里得到输入

areaInput = QtGui.QInputDialog.getText(self, "Copy Area", "New Area Name:", 0)

但是我想让对话框变大,我已经尝试过诸如

QtGui.QInputDialog.resize(400, 400)

但是它说“第一个参数必须是 QWidget 类”,我不太确定这意味着什么或如何修复它。谢谢。

最佳答案

这样做是可能的:

dlg =  QtGui.QInputDialog(self)                 
dlg.setInputMode( QtGui.QInputDialog.TextInput)
dlg.setLabelText("URL:")
dlg.resize(500,100)
ok = dlg.exec_()
url = dlg.textValue()

关于python - 如何调整 QInputDialog、PyQt 的大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2450682/

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