保存dialog的位置和大小 博客分类: Eclipse 插件 eclipsedialogsizelocation
程序员文章站
2024-03-26 12:23:47
...
/* @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方法就行了。