mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-23 02:51:26 -07:00
22 lines
526 B
C#
22 lines
526 B
C#
using System;
|
|
using System.Windows.Input;
|
|
|
|
using Bloxstrap.UI.ViewModels.Menu;
|
|
|
|
namespace Bloxstrap.UI.Menu.Pages
|
|
{
|
|
/// <summary>
|
|
/// Interaction logic for FastFlagsPage.xaml
|
|
/// </summary>
|
|
public partial class FastFlagsPage
|
|
{
|
|
public FastFlagsPage()
|
|
{
|
|
DataContext = new FastFlagsViewModel();
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void ValidateInt32(object sender, TextCompositionEventArgs e) => e.Handled = !Int32.TryParse(e.Text, out int _);
|
|
}
|
|
}
|