Alignment of an image
Posted: Mon Oct 10, 2022 7:44 pm
Is there a possibility to align a picture on the window?
The Cross-Platform Multimedia Application Layer
https://forums.hollywood-mal.com/
Code: Select all
<?xml version="1.0" encoding="iso-8859-1"?>
<application id="app">
<window title="Image">
<hgroup>
<vgroup>
<rectangle/>
<hgroup frame="true" halign="left">
<rectangle/>
<image id="image" brush="1"/>
<rectangle/>
</hgroup>
<button id="flip">Flip</button>
<rectangle/>
</vgroup>
</hgroup>
</window>
</application>
Code: Select all
<?xml version="1.0" encoding="iso-8859-1"?>
<application id="app">
<window title="Image">
<hgroup>
<vgroup>
<rectangle/>
<hgroup frame="true" halign="right">
<rectangle/>
<image id="image" brush="1"/>
;<rectangle/>; THIS
</hgroup>
<button id="flip">Flip</button>
<rectangle/>
</vgroup>
</hgroup>
</window>
</application>