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
Thank you!! I was able to achieve for windows platform by setting these to false.
window.ExtendsContentIntoTitleBar = false;
AppUI.SetBorderAndTitleBar(false, false);