bloxstrap/Bloxstrap/UI/Elements/Settings/Pages/ModsPage.xaml.cs
pizzaboxer 776dbc4097
Draft: new installer system
the beginning of a long arduous cleanup of two years of debt
2024-08-10 13:08:04 +01:00

23 lines
603 B
C#

using System.Windows;
using Bloxstrap.UI.ViewModels.Settings;
namespace Bloxstrap.UI.Elements.Settings.Pages
{
/// <summary>
/// Interaction logic for ModsPage.xaml
/// </summary>
public partial class ModsPage
{
public ModsPage()
{
DataContext = new ModsViewModel();
InitializeComponent();
// fullscreen optimizations were only added in windows 10 build 17093
if (Environment.OSVersion.Version.Build < 17093)
this.FullscreenOptimizationsToggle.Visibility = Visibility.Collapsed;
}
}
}