我知道如何使用嵌套元素定义ValidationRules(例如here),但我该如何内联?即。
<TextBox Text="{Binding Amount, ValidationRules=???, Mode=TwoWay, ValidatesOnExceptions=True, NotifyOnValidationError=True}" >
我尝试了ValidationRules={StaticResource CashAmountRule}
,其中CashAmountRule指向我的自定义验证规则类,但编译器抱怨它不是Collection值。我该怎么做呢?