MenuItem mntmInfo = new MenuItem(menu_2, SWT.NONE);
mntmInfo.addSelectionListener(new SelectionAdapter() {
@Override
public void widgetSelected(SelectionEvent e) {
new About();
}
});
mntmInfo.setText("About");
Composite composite = new Composite(shell, SWT.NONE);