From 62bfbc5ceaedc28fdb9a9753f83ed8f4e6c660fa Mon Sep 17 00:00:00 2001 From: ApfelTeeSaft <91074565+ApfelTeeSaft@users.noreply.github.com> Date: Wed, 8 May 2024 09:50:55 +0200 Subject: [PATCH] :8ball: --- WpfApp6/Windows/fakeLogin.xaml.cs | 39 +++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 WpfApp6/Windows/fakeLogin.xaml.cs diff --git a/WpfApp6/Windows/fakeLogin.xaml.cs b/WpfApp6/Windows/fakeLogin.xaml.cs new file mode 100644 index 0000000..0d3ac64 --- /dev/null +++ b/WpfApp6/Windows/fakeLogin.xaml.cs @@ -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 +{ + /// + /// Interaction logic for fakeLogin.xaml + /// + 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) + { + + } + } +}