Components: borderlayout, north, south, center,west,east
レイアウトコンポーネントは多重化されたコンポーネントです。親コンポーネントはボーダーレイアウトで、その子コンポーネントには north, south, center, west, と east を含むことができます。
子コンポーネントとボーダーレイアウトとの組合せも自由です。例えば、領域を 3 つに区切り(横に)、次のような組合せを試します。
<borderlayout height="500px">
<east>
The East
</east>
<center>
The Center
</center>
<west>
The West
</west>
</borderlayout>
それとも、次のように領域を 3 つに区切り(縦に)ます。
<borderlayout height="500px">
<north>
The North
</north>
<center>
The Center
</center>
<south>
The South
</south>
</borderlayout>
そして、それらの 3 つの領域にどの ZK コンポーネントも好みに応じて埋め込むことができます。