主界面UI配置
<h1>主界面UI配置</h1>
<h2>1.主界面UI配置</h2>
<p><strong>接口</strong>: <code>setMainUIConfig</code>
主界面UI配置方法,控制工具条、文件列表、布局等功能的显示或隐藏。</p>
<h3>参数</h3>
<table>
<thead>
<tr>
<th>参数名</th>
<th>类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td>mainUI</td>
<td>数组</td>
<td>'Toolbar', 'Modellist', 'ResetButton' 的值可以选择,传递哪个显示哪个,不传默认不显示</td>
</tr>
</tbody>
</table>
<h3>示例</h3>
<pre><code class="language-javascript">var application2dConfig = new BCore2DFast.Application.Application2DConfig();
application2dConfig.language = language; // 设置语言
var mApplication2D = new BCore2DFast.Application2D(application2dConfig);
let mViewer2D = new BCore2DFast.Viewer.Viewer2D('bcorecontainer-2d', new BCore2DFast.Viewer.Viewer2DConfig());
mApplication2D.setMainUIConfig(['Toolbar', 'Modellist', 'ResetButton']);</code></pre>
<h2>2.显示或隐藏工具条</h2>
<p><strong>接口</strong> <code>toggleToolbar(flag)</code>
控制工具条的显示或隐藏。</p>
<h3>参数</h3>
<table>
<thead>
<tr>
<th>参数名</th>
<th>必选</th>
<th>类型</th>
<th>说明</th>
<th>可选项</th>
</tr>
</thead>
<tbody>
<tr>
<td>flag</td>
<td>是</td>
<td>boolean</td>
<td>true表示显示工具条,false表示隐藏工具条</td>
<td>true / false</td>
</tr>
</tbody>
</table>
<h3>示例</h3>
<pre><code class="language-javascript">mApplication2D.toggleToolbar(false); // 隐藏工具条</code></pre>
<h2>说明</h2>
<p>通过上述方法,您可以灵活地控制主界面的UI元素,如工具条和文件列表的显示状态,以满足不同的用户需求</p>