Hi,
Im making a program that is sortove like a media player... well, it is a media player. Its quite basic at the moment but i have been working on a few features. One of the things it can do is that it can play a video full screen. I did it using
self.ShowFullScreen(True, style=wx.FULLSCREEN_ALL)
But... i have two windows in my program, one is the player, the thing that the video displays on, and one is the play, pause, stop windows. The control panel if you will. My problem is that when i go full screen i want the control panel to jump IN front of the full-screened window. I using wx.STAY_ON_TOP. But that got annoying because every time i got in and out of fullscreen i would need to change it. So i was wondering, is there a simple way to send a window to the front of a screen.
Thanks