Mica and Acrylic Backdrop Crash Fix

Summary

ᶜᵒⁿˢʸˢ ConSys's studios server: Announcement adds code in mainwindow.xaml.cs that checks Microsoft.UI.Composition.SystemBackdrops.MicaController.IsSupported and sets SystemBackdrop to Mica or DesktopAcrylic. The change updates the titlebar to ConSys Axiom - Mica or - Acrylic and aims to eliminate crashes and improve UI consistency for users.

Original Post

a new code added in mainwindow.xaml.cs

if (Microsoft.UI.Composition.SystemBackdrops.MicaController.IsSupported()) { SystemBackdrop = new Microsoft.UI.Xaml.Media.MicaBackdrop(); Title = "ConSys Axiom - Mica"; // هيظهر في الـ titlebar } else { SystemBackdrop = new Microsoft.UI.Xaml.Media.DesktopAcrylicBackdrop(); Title = "ConSys Axiom - Acrylic"; // هيظهر في الـ titlebar }

Image available on Discord

The latest from ᶜᵒᵐᵈᵉᵛ ComDev's studios server