This commit is contained in:
ApfelTeeSaft
2024-05-08 09:50:55 +02:00
parent 11cf59a01d
commit 62bfbc5cea
+39
View File
@@ -0,0 +1,39 @@
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.Shapes;
namespace Launcher.Windows
{
/// <summary>
/// Interaction logic for fakeLogin.xaml
/// </summary>
public partial class fakeLogin : Window
{
public fakeLogin()
{
InitializeComponent();
}
private void TextBox_PreviewTextInput(object sender, TextCompositionEventArgs e)
{
//Regex r = new Regex(@"^[a-zA-Z@]+$");
//if (!r.IsMatch(e.Text))
//e.Handled = true;
}
private void TextBox_TextChanged(object sender, TextChangedEventArgs e)
{
}
}
}