Quantcast
Channel: wpftoolkit Discussions Rss Feed
Viewing all articles
Browse latest Browse all 2157

New Post: Conditional Wizard Pages

$
0
0
Hi,

You can use the WizardPage.CanNextPage property and set it when your conditions are filled :
<xctk:WizardPage x:Name="_page"
                          PageType="Interior"
                          Title="Page 2"
                          Description="This is the second page in the process"
                          CanSelectNextPage="False">
            <Button Content="Test"
                    Click="Button_Click" />
</xctk:WizardPage>

 private void Button_Click( object sender, RoutedEventArgs e )
    {
      if( _page != null )
      {
        _page.CanSelectNextPage = true;
      }
    }

Viewing all articles
Browse latest Browse all 2157


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>