How can I hide the main window titlebar and place a transparent background in kivy framework?
问题 I have a small problem and I am working on a small app that uses the python kivy gui framework. All i want is to hide the titlebar of the main window and make the background color transparent. I searched the net intensively but I couldn't find a solution for this. Does anyone know how to do this? Thanks 回答1: You can disable bar using kivy.config.Config . Set fullscreen as fake : from kivy.config import Config Config.set('graphics', 'fullscreen', 'fake') from kivy.app import App from kivy.uix