123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Text.RegularExpressions;
- using System.Threading.Tasks;
- using System.Windows;
- namespace LibraryRDK
- {
- public class InputValidation
- {
- public static bool Pattern(string text)
- {
- string pattern = @"\b[0-2][0-9]:[0-5][0-9]-[0-2][0-9]:[0-5][0-9]\b";
- Regex regex = new Regex(pattern);
- if (regex.IsMatch(text))
- {
- return true;
- }
- else
- {
- return false;
- }
- }
- public static bool CheckAuthorization(string login, string password)
- {
- if (!string.IsNullOrWhiteSpace(login))
- {
- if (!string.IsNullOrEmpty(password))
- {
- return true;
- }
- else
- {
- MessageBox.Show("Заполните Пароль", "Ошибка", MessageBoxButton.OK, MessageBoxImage.Error);
- return false;
- }
- }
- else
- {
- MessageBox.Show("Заполните Логин", "Ошибка", MessageBoxButton.OK, MessageBoxImage.Error);
- return false;
- }
- }
- }
- }
|