setTitle(BaseBundle.getValue("dialog.about.caption"));
setDefaultCloseOperation(JDialog.DISPOSE_ON_CLOSE);
setModal(true);
setPreferredSize(new Dimension(750, 550));
add(createContentPanel());
addKeyListener(new CloseAboutDialogListener(this));
pack();
centerWindow();
setVisible(true);
}