Search code examples
c#.net-maui

.NET MAUI disable Minimize Restore Close button


Is it possible to disable or remove Minimize, Restore and Close button from .NET MAUI app?

I tried this but did not work. MAUI .NET Set Window Size


Solution

  • Thank you!! I was able to achieve for windows platform by setting these to false.

     window.ExtendsContentIntoTitleBar = false; 
     AppUI.SetBorderAndTitleBar(false, false);