创建窗口[CreateForm]
<table>
<thead>
<tr>
<th>function</th>
<th>Name</th>
<th>Left</th>
<th>Top</th>
<th>Width</th>
<th>Height</th>
<th>ImageName</th>
<th>Visible</th>
<th>BoCanMove</th>
<th>ret</th>
</tr>
</thead>
<tbody>
<tr>
<td>CreateForm</td>
<td>窗口名</td>
<td>左边</td>
<td>顶边</td>
<td>宽度</td>
<td>高度</td>
<td>图片名</td>
<td>是否显示</td>
<td>允许移动</td>
<td>返回控件对象</td>
</tr>
</tbody>
</table>
<pre><code class="language-lua">LogForm = CreateForm{Name = &#039;福袋&#039;, Left = 96, Top = 100, Width = 394, Height = 322,
ImageName = &#039;img_storage_bg.png&#039;, Visible = false, BoCanMove = true}</code></pre>