I usually use a TabControl and somehow hide the tabs and navigate through them.
I am curious about other ways of doing this!!!
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You could use a collection of
Panelobjects, with all but the first panel having theirVisibleproperty set tofalse.Store the index of the current panel, and have “Next” and “Previous” buttons that change this index appropriately. When this index is changed, make the appropriate panels visible/not visible as needed (only the current panel should be visible at a given time).
You can also handle the
IsVisibleChangedevent on some/all of your panels, to trigger certain behaviors to occur when the user navigates to a particular panel.