InputValidation.cs 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Text.RegularExpressions;
  6. using System.Threading.Tasks;
  7. using System.Windows;
  8. namespace LibraryRDK
  9. {
  10. public class InputValidation
  11. {
  12. public static bool Pattern(string text)
  13. {
  14. string pattern = @"\b[0-2][0-9]:[0-5][0-9]-[0-2][0-9]:[0-5][0-9]\b";
  15. Regex regex = new Regex(pattern);
  16. if (regex.IsMatch(text))
  17. {
  18. return true;
  19. }
  20. else
  21. {
  22. return false;
  23. }
  24. }
  25. public static bool CheckAuthorization(string login, string password)
  26. {
  27. if (!string.IsNullOrWhiteSpace(login))
  28. {
  29. if (!string.IsNullOrEmpty(password))
  30. {
  31. return true;
  32. }
  33. else
  34. {
  35. MessageBox.Show("Заполните Пароль", "Ошибка", MessageBoxButton.OK, MessageBoxImage.Error);
  36. return false;
  37. }
  38. }
  39. else
  40. {
  41. MessageBox.Show("Заполните Логин", "Ошибка", MessageBoxButton.OK, MessageBoxImage.Error);
  42. return false;
  43. }
  44. }
  45. }
  46. }