窗口类使用例子
wndUtil = LuaWndUtil();
wndUtil:setDefaultProps();
wndUtil:setValue('id_label', 'label', true);
wndUtil:getValue('id_label');
wndUtil:getIntValue('id_label');
wndUtil:getFloatValue('id_label');
wndUtil:move(10, 20);
wndUtil:resize(800, 600);
wndUtil:show(true);
wndUtil:show(false);
wndUtil:lower();
wndUtil:raise();
wndUtil:setStyleSheet([[border:1px solid #E3E3E1;background-color: #48B933;]]);
wndUtil:setTitle('测试窗口');
wndUtil:setFocus();
print(wndUtil:left());
print(wndUtil:top());
print(wndUtil:bottom());
print(wndUtil:right());
print(wndUtil:width());
print(wndUtil:height());
wndUtil:setOpacity(0.5);
wndUtil:setBackColor(ui:rgb(255,255,255));
wndUtil:setFont(20, false, false, false);
wndUtil:setTextColor(ui:rgb(0,0,0));
wndUtil:setBackImage('picture\test_pic\test_1.jpg');
wndUtil:setTrans(false);
wndUtil:setCaption('test');
print(wndUtil:getCaption());