是否可以创建第二个可以使用PreferencePage
的首选项对话框,就像标准的eclipse首选项(Eclipse> Preferences或Window> Preferences)一样?
到目前为止,我的解决方案是通过扩展PreferenceEditorDialog
创建我自己的Dialog
并实现我自己的Preference Dialog样式布局。
/**
* A preference dialog is a hierarchical presentation of preference pages. Each
* page is represented by a node in the tree shown on the left hand side of the
* dialog; when a node is selected, the corresponding page is shown on the right
* hand side.
*/
public class PreferenceEditorDialog extends Dialog implements IPageChangeProvider {
}
我更愿意重用eclipse实现,因为我不必自己维护代码。