Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Info

This pages needs a review and misses a practical example. If you got the know-how you can help here to improve the documentation!

Creating Your Own Panels

In IzPack, all of the actual work of installing an application is done in panels. The IzPack framework supports the operation of the panels and manages the navigation through the installation process. The operations to executed during an installation and the order in which they are carried out, is specified by listing the appropriate panels in the desired order.

...

A common way to define language dependant messages for custom panels is to define a resource for custom langpacks.

...


<resources>
    ...
    <res id="CustomLangpack.xml_deu"
        src="myConfigSubPath/CustomLangpack_deu.xml"/>
    ...
</resources>
 


This appears in the install.xml file and defines a German language pack for a custom panel.

...