CXUIButton btn = uiman.CreateUI_Button(uiman);
btn.SetParent(uiman);
btn.SetUIID(1002);
btn.SetCaption(_T("¸Þ´º ¹öư"));
btn.SetBound(0, dpsize.GetCY() - 72, 72, 72);
btn.SetImageList(_T("Image\\UI\\btn_menu_72.png"), 72, 72);
btn.SetAnchor(util.GetConstToValue(_T("TMUIOBJ_ANCHOR_LEFT")) | util.GetConstToValue(_T("TMUIOBJ_ANCHOR_TOP")));
btn.SetCanFocus(1);
btn.SetCanClick(1);
btn.SetBrush(util.GetConstToValue(_T("BS_SOLID")), util.RGBColor(255, 0, 0), 0);
btn.SetTransparent(util.GetConstToValue(_T("TMUIOBJ_TRANSPARENT_ALL")));
btn.SetAlpha(70);
btn.SetEnabled(1);
if(btn.GetEnabled() == 1)
{
btn.SetEnabled(0);
} else {
btn.SetEnabled(1);
}