Smooth Transition Between Frames

I wonder if it is possible to make transitions between frames smoother
in WxPython.

For now I use the classical "self.Destroy" and
"self.GetParent().Show()" methods to implement this task. But
transitions are sharp. And it just doesnt look nice to my eyes.

Any other suggestions?

Thanks in advance.

Why are you destroying in the first place? Isn't hide/show enough?

Maybe "freeze/thaw" might help.

Werner

ยทยทยท

On 05/05/2011 12:39 PM, Shansal wrote:

I wonder if it is possible to make transitions between frames smoother
in WxPython.

For now I use the classical "self.Destroy" and
"self.GetParent().Show()" methods to implement this task. But
transitions are sharp. And it just doesnt look nice to my eyes.

Any other suggestions?