欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

保存dialog的位置和大小

程序员文章站 2022-04-01 08:53:43
...
/*
	@Override
	protected IDialogSettings getDialogBoundsSettings() {
		IDialogSettings dialogSettings = Activator.getDefault().getDialogSettings();
		String dialogKey = EventSearchDialog.class.getCanonicalName();
		IDialogSettings boundsSettings = dialogSettings.getSection(dialogKey);
		if (boundsSettings == null) {
			boundsSettings = dialogSettings.addNewSection(dialogKey);
		}
		return boundsSettings;
	}
*/

 

不管使用JFace的dialog,或者SWT的dialog。覆盖getDialogBoundsSettings方法就行了。