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

Changing Text on NextButton seem's to be not OK :( #47

Closed dahall closed 5 years ago

dahall commented 5 years ago

Hello, Thanks a lot for your wizard :-) Just a little question, i would like to chanbge the button text for the Next Button on my Last page. I tried this : 

private void wizardPage3_Initialize(object sender, AeroWizard.WizardPageInitEventArgse) 
{
   wizardControl1.NextButtonText ="Terminate" ; 
   wizardControl1.Refresh();
   wizardControl1.Invalidate();
}

My button always appear at "Next" and not "Terminate".

Could you help me please ?

Thanks a lot,

Best regards,

Originally posted: 2012-09-26T04:33:01

dahall commented 5 years ago

Just found the solution on the source code :

Use :

wizardControl1.FinishButtonText =

"Terminer" ;

 

Originally posted: 2012-09-26T07:16:36