mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-01 10:48:09 +07:00
25 lines
552 B
XML
25 lines
552 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<?import javafx.scene.layout.*?>
|
|
<?import javafx.scene.image.*?>
|
|
|
|
<AnchorPane xmlns:fx="http://javafx.com/fxml">
|
|
<children>
|
|
<ImageView>
|
|
<image>
|
|
<Image url="@appIcon.png"/>
|
|
</image>
|
|
</ImageView>
|
|
<ImageView>
|
|
<image>
|
|
<Image url="appIcon.png"/>
|
|
</image>
|
|
</ImageView>
|
|
<ImageView>
|
|
<image>
|
|
<Image url="@<error descr="Cannot resolve file 'unknownIcon.png'">unknownIcon.png</error>"/>
|
|
</image>
|
|
</ImageView>
|
|
</children>
|
|
</AnchorPane>
|