I am develop an new UWP app with Fluent Design System, and I want that my background with Acrylic material and I am using <Grid Background="{ThemeResource SystemControlBaseHighAcrylicWindowBrush}">
my I also want that the Title Bar of my UWP app be transparent (with Fluent Design System) and I am use this:
var coreTitleBar = CoreApplication.GetCurrentView().TitleBar;
coreTitleBar.ExtendViewIntoTitleBar = true;
but the minimizing, maximizing, and closing butts do not become transparent, why?
I want the title bar of my application to be the same as the Windows 10 calculator!
You can do that using properties of the
ApplicationViewTitleBar
class:Documentation references: