5
votes
3answers
4k views

Which Python GUI library is easiest to use? [closed]

Among the GUI libraries for Python, which is more easier to work with: PyQt4, wxPython or any other? I just wrote few lines of PyQt4 code, it seems things are not that easy with Qt. Are there any ...
4
votes
1answer
528 views

Best way of learning Python + GUI when coming from .NET

I've been developing applications in C# / VB.NET for about 3-4 years (.NET Framework v2.0, 3.5, 4). I have also developed some command-line applications or scripts in C, and Python under Linux. ...
0
votes
0answers
4 views

wxPython problem with toolbar [migrated]

I have a problem with this code: import wx class Example(wx.Frame): def __init__(self, *args, **kwargs): super(Example, self).__init__(*args, **kwargs) self.InitUI() def ...