Bug: 当在ArcPad.apx中浏览工具栏的visible设置成false时仍显示

文章编号: 138
软件: ArcPad 6.0,6.0.1
操作系统: N/A
已邀请:

EsriSupport

赞同来自:

错误信息: 在ArcPad.apx的默认配置文件中,浏览工具栏是被设置成不可见的,但是浏览工具栏仍然显示。 例如:ArcPad.apx如下: <?xml version="1.0" encoding="UTF-8"?> <ArcPad> <CONFIG> <TOOLBARS> <TOOLBAR name="main" visible="true"></TOOLBAR> <TOOLBAR name="browse" visible="false"></TOOLBAR> <TOOLBAR name="draw" visible="false"></TOOLBAR> <TOOLBAR name="Custom1" caption="Custom" visible="true"> <TOOLBUTTON command="modezoomin"></TOOLBUTTON> </TOOLBAR> </TOOLBARS> </CONFIG> </ArcPad>
原因:
不管是通过工具栏对话框还是目录浏览把浏览工具栏设置成不可见的,但是一个自定义的工具栏已经被创建。

解决方法: 改变在ArcPad.apx的各个工具栏组件的排列次序并且把浏览工具栏放置在最后。
例如:
<?xml version="1.0" encoding="UTF-8"?>
<ArcPad>
<CONFIG>
<TOOLBARS>
<TOOLBAR name="main" visible="true"></TOOLBAR>
<TOOLBAR name="draw" visible="false"></TOOLBAR>
<TOOLBAR name="Custom1" caption="Custom" visible="true">
<TOOLBUTTON command="modezoomin"></TOOLBUTTON>
</TOOLBAR>
<TOOLBAR name="browse" visible="false"></TOOLBAR>
</TOOLBARS>
</CONFIG>
</Arcpad>


创建时间:2005-02-02
最近更新:2005-02-02


原文链接
http://support.esrichina.com.cn/2005/0202/138.html

要回复问题请先登录注册