I am building a python desktop application using Kivy and would like to find out how to create a borderless window similar to how EVE Online does it: EVE Online launch screen.
This is where I am now, and what I want to achieve in the next step: What I want to accomplish
I've spent hours Googling for a solution, but the closest I've ever come were these links: How can I hide the main window titlebar and place a transparent background in kivy framework?, and this: Borderless windows in wxPython
Here is the current code (Python 2.7, Kivy 1.9):
from kivy.app import App
from kivy.uix.button import Button
from kivy.config import Config
Config.set('graphics', 'width', '480')
Config.set('graphics', 'height', '320')
Config.set('graphics', 'borderless', '1')
class MyApp(App):
def build(self):
button = Button(text="Exit", size_hint=(None, None))
button.bind(on_press=exit)
return button
if __name__ == '__main__':
MyApp().run()
I would like to see if this can be accomplished in Kivy. Would you be able to suggest some approaches to this problem? Thanks!