bloxstrap/Bloxstrap/UI/ViewModels/Bootstrapper/FluentDialogViewModel.cs
pizzaboxer 67f0fdd1f4
Add back mica for the Fluent dialog style
The Children Yearn For The Mica
2023-07-25 21:31:11 +01:00

16 lines
418 B
C#

using System.Windows;
using System.Windows.Media;
using System.Windows.Media.Imaging;
namespace Bloxstrap.UI.ViewModels.Bootstrapper
{
public class FluentDialogViewModel : BootstrapperDialogViewModel
{
public double FooterOpacity => Environment.OSVersion.Version.Build >= 22000 ? 0.4 : 1;
public FluentDialogViewModel(IBootstrapperDialog dialog) : base(dialog)
{
}
}
}