java - Is it possible to change Finish button text to Done in Wizard? -
I have created a custom wizard with a few pages of the Eclipse plugin. The Pages Wizard is created by increasing the page. The wizard has come back and the cancel button, and everything works fine.
Now, I want to change the name / text of the button to finish / end. Is it possible to do this in eclipse? Or I'll need to provide all the buttons by myself, even it will be fine too.
It should:
@ Override protected create zero ButtonsForButtonBar ( Composite Parents) {super.createButtonsForButtonBar (guardian); Button over = getButton (IDialogConstants.FINISH_ID) finish.setText ("full"); SetButtonLayoutData (finish); }
There is a related question.
Comments
Post a Comment