Standard XML...
<Page>
</Page>
Is the same as
<Page />
The later can be used when an object does not contain other objects. This applies to anything.
<Button></Button>
can be written as
<Button />
If it doesn't contain a text value.
Note: the extra space is not required so <Page/> also works.
|