ZeroNe 2012d9f7b6 Add 'LICENSE' | vor 1 Jahr | |
---|---|---|
.vs | vor 1 Jahr | |
Resources | vor 1 Jahr | |
bin | vor 1 Jahr | |
images | vor 1 Jahr | |
obj | vor 1 Jahr | |
App.xaml | vor 1 Jahr | |
App.xaml.cs | vor 1 Jahr | |
AssemblyInfo.cs | vor 1 Jahr | |
Authorization.xaml | vor 1 Jahr | |
Authorization.xaml.cs | vor 1 Jahr | |
Begin_UserVerification.xaml | vor 1 Jahr | |
Begin_UserVerification.xaml.cs | vor 1 Jahr | |
DB.cs | vor 1 Jahr | |
Hammer store.csproj | vor 1 Jahr | |
Hammer store.csproj.user | vor 1 Jahr | |
Hammer store.sln | vor 1 Jahr | |
LICENSE | vor 1 Jahr | |
MainWindow.xaml | vor 1 Jahr | |
MainWindow.xaml.cs | vor 1 Jahr | |
README.md | vor 1 Jahr | |
Registration.xaml | vor 1 Jahr | |
Registration.xaml.cs | vor 1 Jahr | |
app.manifest | vor 1 Jahr |
var cyrillic = Enumerable.Range(1024, 256).Select(ch => (char)ch);
bool res = passLine1.Any(cyrillic.Contains);
// Ввод имени в поле TextBox
private void textBox_Input_Name_KeyDown(object sender, KeyEventArgs e)
{
if (!(e.Key >= Key.A) || !(e.Key <= Key.Z)) e.Handled = true;
if (e.Key == Key.Space) e.Handled = true;
}
// Ввод возраста в поле TextBox
private void textBox_InputAge_KeyDown(object sender, KeyEventArgs e)
{
if (e.Key < Key.D0 || e.Key > Key.D9) e.Handled = true;
}
License: GNU General Public License v3.0