= Description =
 * [WBContainer] 를 상속한 클래스 
 * [WBComponent] 를 담아서 레이아웃에 맞게 정렬 할 때 쓰입니다. 
 * 자체 여백을 가집니다.
 * 실제 예제는 [WBGridLayout] 을 참조해주세요.

= Sample =
{{{#!vim php
<?php


$panel = new WBPanel(array(
   'layout' => new WBGridLayout(2, 2)
)); 
$panel->add(new WBPushButton( ... ));

?>
}}}
