use of de.carne.jfx.scene.control.aboutinfo.AboutInfoController in project certmgr by hdecarne.
the class StoreController method onCmdAbout.
@SuppressWarnings("unused")
@FXML
void onCmdAbout(ActionEvent evt) {
try {
AboutInfoController aboutInfo = AboutInfoDialog.load(this).setLogo(Images.STORE32);
aboutInfo.addInfo(getClass().getResource("AboutInfo1.txt"));
aboutInfo.addInfo(getClass().getResource("AboutInfo2.txt"));
aboutInfo.addInfo(getClass().getResource("AboutInfo3.txt"));
aboutInfo.showAndWait();
} catch (IOException e) {
Alerts.unexpected(e).showAndWait();
}
}
Aggregations