|
||||||||||
| HomePage :: Categories :: PageIndex :: RecentChanges :: RecentlyCommented :: Login/Register |
<XPage> </XPage>
<XPage> </XPage>
<XPage> <Components> <Label x="123" y="51" w="100" h="20" content="Title:" /> <ComboBox x="238" y="51" w="100" h="20"/> <Label x="123" y="80" w="100" h="20" content="Firstname:" /> <Edit x="238" y="78" w="178" h="20" alignment="Leading"/> <Label x="123" y="110" w="99" h="20" content="Surname:" /> <Edit x="238" y="106" w="178" h="20" alignment="Leading"/> </Components> </XPage>
<styles> <style name="prompt"> <color_back value="ffffff"/> <color_fore value="0000aa"/> <font_face value="arial"/> <font_size value="12"/> <font_weight value="0"/> <font_italic value="0"/> </style> <style name="prompt"> <color_back value="ffffff"/> <color_fore value="000000"/> <font_face value="arial"/> <font_size value="12"/> <font_weight value="1"/> <font_italic value="0"/> </style> </styles> <XPage> <Components> <Label x="123" y="51" w="100" h="20" content="Title:" style="prompt" /> <ComboBox x="238" y="51" w="100" h="20" style="data"/> <Label x="123" y="80" w="100" h="20" content="Firstname:" style="prompt" /> <Edit x="238" y="78" w="178" h="20" alignment="Leading" style="data"/> <Label x="123" y="110" w="99" h="20" content="Surname:" style="prompt" /> <Edit x="238" y="106" w="178" h="20" alignment="Leading" style="data"/> </Components> </XPage>
<XPage class="net.xoetrope.mortgage.NavPanel" style="Heading">
<Components>
<Image name="nextButton" x="564" y="51" w="19" h="18" content="right.gif"/>
<Image name="prevButton" x="60" y="54" w="19" h="18" content="left.gif"/>
</Components>
<Events>
<Event method="nextPage" target="nextButton" type="MouseHandler"/>
<Event method="prevPage" target="prevButton" type="MouseHandler"/>
</Events>
</XPage>
package net.xoetrope.mortgage;
import net.xoetrope.xui.*;
public class NavPanel extends XPage
{
public void nextPage() {
}
public void prevPage() {
}
}