IPRangeValidationRule.cs 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Globalization;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. using System.Windows.Controls;
  8. using System.Windows.Input;
  9. namespace WpfControlLibrary.IpAddress
  10. {
  11. public class IPRangeValidationRule : ValidationRule
  12. {
  13. private int _min;
  14. private int _max;
  15. public int Min
  16. {
  17. get { return _min; }
  18. set { _min = value; }
  19. }
  20. public int Max
  21. {
  22. get { return _max; }
  23. set { _max = value; }
  24. }
  25. public override ValidationResult Validate(object value, CultureInfo cultureInfo)
  26. {
  27. int val = 0;
  28. var strVal = (string)value;
  29. try
  30. {
  31. if ( strVal.Length > 0 )
  32. {
  33. if ( strVal.EndsWith(".") )
  34. {
  35. return CheckRanges(strVal.Replace(".", ""));
  36. }
  37. // Allow dot character to move to next box
  38. return CheckRanges(strVal);
  39. }
  40. }
  41. catch ( Exception e )
  42. {
  43. return new ValidationResult(false, "Illegal characters or " + e.Message);
  44. }
  45. if ( ( val < Min ) || ( val > Max ) )
  46. {
  47. return new ValidationResult(false,
  48. "Please enter the value in the range: " + Min + " - " + Max + ".");
  49. }
  50. else
  51. {
  52. return ValidationResult.ValidResult;
  53. }
  54. }
  55. private ValidationResult CheckRanges(string strVal)
  56. {
  57. if ( int.TryParse(strVal, out var res) )
  58. {
  59. if ( ( res < Min ) || ( res > Max ) )
  60. {
  61. return new ValidationResult(false,
  62. "Please enter the value in the range: " + Min + " - " + Max + ".");
  63. }
  64. else
  65. {
  66. return ValidationResult.ValidResult;
  67. }
  68. }
  69. else
  70. {
  71. return new ValidationResult(false, "Illegal characters entered");
  72. }
  73. }
  74. }
  75. }