mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-18 00:21:33 -07:00
23 lines
589 B
C#
23 lines
589 B
C#
using System.Windows;
|
|
|
|
using Bloxstrap.UI.ViewModels.Menu;
|
|
|
|
namespace Bloxstrap.UI.Elements.Menu.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.FullscreenOptimizations.Visibility = Visibility.Collapsed;
|
|
}
|
|
}
|
|
}
|