dahall / AeroWizard

Library for easy creation of custom and Aero Wizards. Aero Wizard strictly follows Microsoft guidelines and uses Visual Styles to get visual theming.
MIT License
112 stars 32 forks source link

Finish Button #56

Closed dahall closed 5 years ago

dahall commented 5 years ago

Is there a better way to access the Finish button? I have to temporarily hide it. Right now I'm having to do this:

Form.Controls[0].Controls[2].Controls[1].Visible = false;

Originally posted: 2014-07-01T13:27:36

dahall commented 5 years ago

If you can be satisfied with just disabling it, you can set the AllowNext property on the page to false. There is not a way to access the button in the WizardControl, but you could always use the WizardPageContainer and then supply your own buttons.

Originally posted: 2014-07-01T17:41:25