ValidationRule.ValidatesOnTargetUpdated 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定值,這個值表示是否在 Binding 的目標更新值執行驗證規則。
public:
property bool ValidatesOnTargetUpdated { bool get(); void set(bool value); };
public bool ValidatesOnTargetUpdated { get; set; }
member this.ValidatesOnTargetUpdated : bool with get, set
Public Property ValidatesOnTargetUpdated As Boolean
屬性值
如果要在 Binding 的目標更新時執行驗證規則,則為 true
,否則為 false
。
範例
下列範例會檢查 是否 TextBox 為空的。 、 ValidationRuleValueIsNotNull
已 ValidatesOnTargetUpdated 設定為 true
,因此當應用程式啟動時,會 ValidationRule 執行 ,並在 是空的時 TextBox 顯示訊息。
<TextBox Width="150"
Validation.Error="ItemError">
<TextBox.Text>
<Binding Source="{StaticResource myObject}"
Path="PropertyB"
UpdateSourceTrigger="PropertyChanged"
NotifyOnValidationError="True">
<Binding.ValidationRules>
<src:ValueIsNotNull ValidatesOnTargetUpdated="True" />
</Binding.ValidationRules>
</Binding>
</TextBox.Text>
</TextBox>
下列範例顯示 ValidationRule 上一個範例中使用的 ,以及 事件的事件處理常式 Error 。
public class ValueIsNotNull : ValidationRule
{
public override ValidationResult Validate(object value, System.Globalization.CultureInfo cultureInfo)
{
string str = value as string;
if (!string.IsNullOrEmpty(str))
{
return ValidationResult.ValidResult;
}
else
{
return new ValidationResult(false, "Value must not be null");
}
}
}
Public Class ValueIsNotNull
Inherits ValidationRule
Public Overrides Function Validate(ByVal value As Object, ByVal cultureInfo As System.Globalization.CultureInfo) As ValidationResult
Dim str As String = TryCast(value, String)
If Not String.IsNullOrEmpty(str) Then
Return ValidationResult.ValidResult
Else
Return New ValidationResult(False, "Value must not be null")
End If
End Function
End Class