创建按钮[CreateButton]
<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">local closeButton = CreateButton{Parent = LogForm[LogForm.Handle], Name = &#039;仓库关闭&#039;,
Left = 369, Top = 18, Width = 17, Height = 17, Visible = true, Hint = &#039;&#039;}</code></pre>