改变 wx.ProgressDialog 的大小
ProgresDialog 的大小太窄,无法容纳我需要显示的文本... 我尝试在创建对话框后通过调用对话框上的 SetSize
方法来更改对话框的大小。 这固定了对话框的大小,但在创建对话框时,仪表尺寸最初较小,然后尺寸跳跃以适合对话框尺寸,这显然看起来很糟糕,有什么方法可以解决这个问题,还是我只需要创建自定义对话框..
The size of the ProgresDialog is too narrow to hold the text that I need to display...
I tryed to change the size of the dialog by calling the SetSize
method on the dialog after it is created.
This fixed the size of the dialog but on creation of the dialog the gauge size is initially smaller and then jumps in size to fit the dialog box size, which obviously looks nasty, is there any way to fix this or do I just have to create a custom dialog..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据我了解,ProgressDialog 包装了本机平台对话框,因此您可能无能为力来修复它。为了获得最大的灵活性,您必须使用wx.Dialog,也许还需要使用wx.Gauge。
迈克·德里斯科尔
博客:http://blog.pythonlibrary.org
As I understand it, the ProgressDialog wraps the native platform dialog, so there may not be much you can do to fix it. To get the most flexibility, you'll have to use wx.Dialog and maybe a wx.Gauge.
Mike Driscoll
Blog: http://blog.pythonlibrary.org