Re: Wax: problem subclassing TextBox

2006-10-18 Thread Hans Nowak
alex23 wrote: > Hey everyone, > > I've just started looking at Wax and have hit a problem I can't > explain. I want an app to respond to every character input into a > TextBox. > > Here's a simple, working example: > > +++ > from wax import * > > class MainFrame(VerticalFrame): > def Body(sel

Wax: problem subclassing TextBox

2006-10-18 Thread alex23
Hey everyone, I've just started looking at Wax and have hit a problem I can't explain. I want an app to respond to every character input into a TextBox. Here's a simple, working example: +++ from wax import * class MainFrame(VerticalFrame): def Body(self): self.search = TextBox(self)