= Description = 
 * 메뉴 

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

$window = new WBAppWindow(array(
	'title' => 'AppWindow - 300 * 300 고정크기 Window',
	'width' => 300,
	'height' => 300
));


$window->createMenu(array(
	"&File",
		array(
			'caption' => "&Open\tCtrl+N", 
			'image' => "D:\\Project\\easylogic\\wb\\phpcode\\resources\\menu_new.bmp", 
			'accel' => 'Ctrl+N', 
			'callback' => 'test', 
			'hint' => '메롱'
		),
));

$window->setVisible(true);

WBApplication::start();

function test($eo) { 
	echo "bbb", PHP_EOL;
}

?>
}}}
