mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-23 02:51:26 -07:00
23 lines
603 B
C#
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;
|
|
}
|
|
}
|
|
}
|