I develop some UWP apps to Windows10 and I want put the tile bar transparent in a new app developed in WinUi3.
If I try this
ExtendsContentIntoTitleBar = true;
The minimize, maximize and close buttons disappear, and I cannot move the app in my Window.
But in UWP it was more simple. I can put the title bar transparent (or with the same color of my app) without any problem, something like this:
CoreApplication.GetCurrentView().TitleBar.ExtendViewIntoTitleBar = true;
ApplicationViewTitleBar titleBar = ApplicationView.GetForCurrentView().TitleBar;
titleBar.ButtonBackgroundColor = Colors.Transparent;
titleBar.ButtonInactiveBackgroundColor = Colors.Transparent;
titleBar.ButtonForegroundColor = Colors.Black;
It is possible something like that in WinUi3?