bloxstrap/Bloxstrap/UI/Elements/Settings/Pages/ShortcutsPage.xaml.cs
pizzaboxer 7e95fb4d8f
Deferred settings application system + new shortcut settings
this system took way too much effort to think of for some reason idk why
2024-08-13 00:10:18 +01:00

32 lines
753 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
using Bloxstrap.UI.ViewModels.Settings;
namespace Bloxstrap.UI.Elements.Settings.Pages
{
/// <summary>
/// Interaction logic for ShortcutsPage.xaml
/// </summary>
public partial class ShortcutsPage
{
public ShortcutsPage()
{
DataContext = new ShortcutsViewModel();
InitializeComponent();
}
}
}