简体   繁体   中英

WPF Validation not firing when first load

In Prism application I want to using validation.And I have implement the INotifyDataError interface in my ViewModel ,but I found that the validate solution don't be fired when the control is loaded first time.

Then I found the same Question like ' wpf Validation Binding not fired on First Load '

I Found a solution to solve the problem WPF don't fired the validation when first load the datacontext is that:

<TextBox Grid.ColumnSpan="2" Grid.Row="1" x:Name="textBoxFolder" Margin="2,4">
    <TextBox.Text>
        <Binding Path="this.MovieFolder" UpdateSourceTrigger="PropertyChanged">
            <Binding.ValidationRules>
                <!--  Validation rule set to run when binding target is updated. -->
                <Rules:MandatoryInputRule ValidatesOnTargetUpdated="True" />
            </Binding.ValidationRules>
        </Binding>
    </TextBox.Text>
</TextBox>

as you see, ValidatesOnTargetUpdated="True" is the key point ,this property will make WPF fired the validation when the datacontext load first time.

But I think that's a ugly solution. I need to add a Binding.ValidationRules for every control I want to validate.

Is there a good way to solve the problem.

好的,我已经解决了:当元素与简单属性-ValidatesOnTargetUpdated绑定时,您将强制进行验证:

 <rules:MyValidationRule ValidatesOnTargetUpdated="True"  ValidationType="notnull"/>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM