I'm trying to enable the Next button on my wizard only if the current page has no errors. I have validation logic that is executing properly and setting a property, "HasNoErrors", that I've bound to the NextButtonEnabled property of the Wizard. It's not working as of yet, the button is never enabled, even though I know the property has been set to true - any help appreciated. Here what I have currently:
<wizard:Wizard x:Name="wizard"
CancelButtonClosesWindow="True"
FinishButtonClosesWindow="True"
FinishButtonVisible="True"
NextButtonEnabled="{Binding Path=HasNoErrors, UpdateSourceTrigger=PropertyChanged}">
Thanks,
Janene
<wizard:Wizard x:Name="wizard"
CancelButtonClosesWindow="True"
FinishButtonClosesWindow="True"
FinishButtonVisible="True"
NextButtonEnabled="{Binding Path=HasNoErrors, UpdateSourceTrigger=PropertyChanged}">
Thanks,
Janene