Dear all,
using the RadWizardComponent i have some trouble to manage the AllowFinish property.
In my ViewModel i have a Boolean property named
and on the last page i have done a regular binding as below but it doesn't work.
I have also tried to do the same binding on Previous Button and that binding works perfecly.
I have tried to set manually on Xaml file
and doesn't work too.
I'm doing something wrong ? How can I manage properly the Enabled behaviour of that button ?
using the RadWizardComponent i have some trouble to manage the AllowFinish property.
In my ViewModel i have a Boolean property named
public bool CanEndWizardand on the last page i have done a regular binding as below but it doesn't work.
<!-- Last Page --><telerik:CompletionWizardPage Title="Export Model" x:Name="Export" AllowFinish="{Binding CanEndWizard}" HeaderTemplate="{StaticResource HeaderTemplate}" ContentTemplate="{StaticResource Page4ExportModelTemplate}" SideHeaderTemplate="{StaticResource SidebarStatusTemplate}" IsSideHeaderVisible="False" ButtonsVisibilityMode="Previous,Finish,Cancel" />I have also tried to do the same binding on Previous Button and that binding works perfecly.
I have tried to set manually on Xaml file
AllowFinish="False"and doesn't work too.
I'm doing something wrong ? How can I manage properly the Enabled behaviour of that button ?