I'm developing an application on linux using wxglade with python 2.7..
the thing is when I execute it in linux,
I can see the app but the widgets don't show properly..
The wx.ListCtrl doesn't show the items.
All the app runs so slow.. and I can't quit. I've to kill the process.
If you are not going to paint the window in the handler then you should not be using the EVT_PAINT event. Otherwise you must create a wx.PaintDC in the handler or Windows will assume that you are not finished and will resend the event.
···
On 4/23/12 5:24 AM, leferreyra wrote:
Hi,
I'm developing an application on linux using wxglade with python 2.7..
the thing is when I execute it in linux,
I can see the app but the widgets don't show properly..
The wx.ListCtrl doesn't show the items.
All the app runs so slow.. and I can't quit. I've to kill the process.
El día 23 de abril de 2012 13:35, Robin Dunn <robin@alldunn.com> escribió:
On 4/23/12 5:24 AM, leferreyra wrote:
Hi,
I'm developing an application on linux using wxglade with python 2.7..
the thing is when I execute it in linux,
I can see the app but the widgets don't show properly..
The wx.ListCtrl doesn't show the items.
All the app runs so slow.. and I can't quit. I've to kill the process.
If you are not going to paint the window in the handler then you should not
be using the EVT_PAINT event. Otherwise you must create a wx.PaintDC in the
handler or Windows will assume that you are not finished and will resend the
event.