How to hide the "help" from the master?

Does anyone know how to hide such a help image from my custom wizard? alt text http://img268.imageshack.us/img268/6485/newprojectwt.png

setHelpAvailable(false) doesn’t work, it hides the “rectangular help button”, not this image.

thank

+3
source share
2 answers

This confirms this thread , designed this thread :

  • . WizardDialog, , .
    , .

  • "help".
    , , setHelpAvailable(true). , performHelp.


( ) TrayDialog.setDialogHelpAvailable().
false, JFace- . , TrayDialog, setHelpAvailable true.

TrayDialog.
WizardDialog , TrayDialog.

 /**
  * Sets whether JFace dialogs that support help control should
  * show the control by default. If set to <code>false</code>,
  * help control can still be shown on a per-dialog basis.
  *
  * @param helpAvailable <code>true</code> to show the help
  * control, <code>false</code> otherwise.
  * @since 3.2
  */
 public static void setDialogHelpAvailable(boolean helpAvailable) {
     dialogHelpAvailable = helpAvailable;
 }
+5

: , , TrayDialog.createButtonBar ( createContents).

+1

Source: https://habr.com/ru/post/1745572/


All Articles