Window Control

Dear sir,

How to fix my wxpython window always to the top window on my screen?

JK.LEE

이재구 wrote:

Dear sir,

How to fix my wxpython window always to the top window on my screen?

Please provide more details of what you would like to do.

···

--
Robin Dunn
Software Craftsman
http://wxPython.org Java give you jitters? Relax with wxPython!

JK. LEE wrote:

How to fix my wxpython window always to the top window on my screen?

If I understood you right, then what you want is to make wxFrame stay on top
of other windows. If this is what you seeking for, then you need to create
the wxFrame with wxSTAY_ON_TOP style.
frame = wxFrame(None, wxNewId(), 'STAYING ON TOP', style =
wxDEFAULT_FRAME_STYLE | wxSTAY_ON_TOP)

Ilia Kats