Adding Custom Icons to JFXtras Window Control (VFXWindows)
Adding custom Icons: The window control comes with some predefined icons. But it is also possible to provide custom icons. To add a custom icon just add it via either getRightIcons().add(myIcon) or getLeftIcons().add(myIcon). The action of an icon can be defined by defining an EventHandler via setOnAction(..). Example: WindowIcon customIcon …