我写了一个向导,现在我想使用弹出菜单启动向导。 我做了这样的动作:
/**
* @see IActionDelegate#run(IAction)
*/
public void run(IAction action) {
MyWizard wizard = new MyWizard ();
wizard.init(PlatformUI.getWorkbench(), new StructuredSelection());
WizardDialog dialog = new WizardDialog(shell, wizard);
dialog.create();
dialog.getShell().setText(wizard.getWindowTitle());
int result = dialog.open();
}
但它不起作用。
我该怎么做?