为继承自TitleAreaDialog的对话框添加window title,需要重写configureShell方法,setTitle("维护字段属性")方法,只是添加在title area

@Override
	protected void configureShell(Shell newShell) {
		// TODO Auto-generated method stub
		super.configureShell(newShell);
		newShell.setText("配置列属性");
	}

 

 

效果如下:
为TitleAreaDialog添加窗体标题
 

相关文章:

  • 2022-12-23
  • 2021-08-13
  • 2021-06-07
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-25
猜你喜欢
  • 2022-12-23
  • 2021-07-01
  • 2021-06-01
  • 2021-09-06
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案