Programming/Eclipse RCP

Dialog Title 바꾸기

Lawmin 2011. 9. 16. 11:03

http://wiki.eclipse.org/FAQ_How_do_I_set_the_title_of_a_custom_dialog%3F

   protected void configureShell(Shell shell) {
      super.configureShell(shell);
      shell.setText("My Dialog");
   }