How can I bring the Kivy window to the foreground in a Kivy desktop app?

Asker

I'm writing a Kivy app for desktop and want to bring the GUI window to the foreground. Is there a nice way to do this using Kivy methods?

(Btw, I already looked at https://kivy.org/doc/stable/api-kivy.core.window.html and found nothing. Also, I know how to do this using the WinAPI with ctypes, but the downside is that that would be limited to Windows.)

inclement

I don't think we expose this. It looks like SDL2 provides SDL_RaiseWindow for it, but I guess we don't wrap an api around that right now, although I didn't check.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related