2024-09-22 11:05:41 +08:00
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
|
2025-04-24 20:56:44 +08:00
|
|
|
|
namespace ShrlAlgoToolkit.Mvvm.Attributes;
|
2024-09-22 11:05:41 +08:00
|
|
|
|
|
|
|
|
|
|
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Parameter)]
|
|
|
|
|
|
public sealed class IsNumericAttribute : ValidationAttribute
|
|
|
|
|
|
{
|
|
|
|
|
|
protected override ValidationResult IsValid(object value, ValidationContext validationContext)
|
|
|
|
|
|
{
|
|
|
|
|
|
return double.TryParse(value.ToString(), out var _) ? ValidationResult.Success : new("输入内容不是数值。");
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|