Re: wxPython: panel not fully painted

2007-01-28 Thread citronelu
Thank you. -- http://mail.python.org/mailman/listinfo/python-list

Re: wxPython: panel not fully painted

2007-01-25 Thread Morpheus
On Wed, 24 Jan 2007 13:35:51 -0800, citronelu wrote: > Hi, > > I'm new to wxpython, and the following code is my first serious > attempt: > > > #~ start code > import wx > > class MyPanel(wx.Panel): > def __init__(self, parent, id): > wx.Panel.__init__(self, parent, id) > s

Re: wxPython: panel not fully painted

2007-01-24 Thread Chris Mellon
On 24 Jan 2007 13:35:51 -0800, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Hi, > > I'm new to wxpython, and the following code is my first serious > attempt: > > > #~ start code > import wx > > class MyPanel(wx.Panel): > def __init__(self, parent, id): > wx.Panel.__init__(self, paren

wxPython: panel not fully painted

2007-01-24 Thread citronelu
Hi, I'm new to wxpython, and the following code is my first serious attempt: #~ start code import wx class MyPanel(wx.Panel): def __init__(self, parent, id): wx.Panel.__init__(self, parent, id) self.parent = parent button = wx.Button(self, -1, "Refresh") butt