Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想删除 Windows 默认标题栏,以便我可以创建自己的与我的应用程序匹配的标题栏。我四处寻找,但找不到任何东西。
谢谢
要删除它,您可以使用undecorated参数Window:
undecorated
Window
fun main() = application { Window( onCloseRequest = ::exitApplication, undecorated = true, ) { App() } }