J
Jason
I have a TkRoot which opens a tktoplevel window:
@toplevel.focus(true)
@toplevel.set_grab
@toplevel.wait_destroy # same as top.tkwait_destroy
@toplevel.release_grab
On my top level window I have a button which when clicked opens a
TkMessageBox. When the message box opens the TkRoot window comes back
into focus above the TopLevel window. How can I stop this from
happening? I want the TkMessageBox to be on top of the TopLevel window
which is on top of the TkRoot.
@toplevel.focus(true)
@toplevel.set_grab
@toplevel.wait_destroy # same as top.tkwait_destroy
@toplevel.release_grab
On my top level window I have a button which when clicked opens a
TkMessageBox. When the message box opens the TkRoot window comes back
into focus above the TopLevel window. How can I stop this from
happening? I want the TkMessageBox to be on top of the TopLevel window
which is on top of the TkRoot.