答网友:如何在Sbo Add-on中激活或者禁止系统增加、查找和导航按钮?

 2023-09-05 阅读 384 评论 0

摘要:/// <summary> /// 允许或者禁止窗体使用系统查找按钮 /// </summary> /// <param name="bEnable">允许使用:真;禁止使用:假</param> public void EnableSearchMenu(Boolean bEnable) { oForm.EnableMenu(&#
/// <summary>
        /// 允许或者禁止窗体使用系统查找按钮
        /// </summary>
        /// <param name="bEnable">允许使用:真;禁止使用:假</param>
        public void EnableSearchMenu(Boolean bEnable)
        {
            oForm.EnableMenu("1281", bEnable);
        }
/// <summary>
        /// 允许或者禁止窗体使用系统新增按钮
        /// </summary>
        /// <param name="bEnable">允许使用:真;禁止使用:假</param>
        public void EnableAddMenu(Boolean bEnable)
        {
            oForm.EnableMenu("1282", bEnable);
        }
/// <summary>
        /// 允许或者禁止窗体使用系统导航按钮
        /// </summary>
        /// <param name="bEnable">允许使用:真;禁止使用:假</param>
        public void EnableNavigatorMenu(Boolean bEnable)
        {
            oForm.EnableMenu("1283", bEnable);
            oForm.EnableMenu("1284", bEnable);
            oForm.EnableMenu("1285", bEnable);
            oForm.EnableMenu("1286", bEnable);
        }

本文转自foresun  51CTO博客,原文链接:http://blog.51cto.com/foresun/49801,如需转载请自行联系原作者

版权声明:本站所有资料均为网友推荐收集整理而来,仅供学习和研究交流使用。

原文链接:https://hbdhgg.com/1/300.html

发表评论:

本站为非赢利网站,部分文章来源或改编自互联网及其他公众平台,主要目的在于分享信息,版权归原作者所有,内容仅供读者参考,如有侵权请联系我们删除!

Copyright © 2022 匯編語言學習筆記 Inc. 保留所有权利。

底部版权信息