二开案例.表单插件.设置标签标题

栏目:云星空知识作者:金蝶来源:金蝶云社区发布:2024-09-23浏览:1

二开案例.表单插件.设置标签标题

【应用场景】

设置标签标题。


【案例演示】

采购订单,新增标签控件,显示明细信息单据体总行数和选中行数。


【实现步骤】

<1>编写表单插件,代码如下。

using Kingdee.BOS.Core.DynamicForm.PlugIn;
using Kingdee.BOS.Core.DynamicForm.PlugIn.Args;
using Kingdee.BOS.Core.DynamicForm.PlugIn.ControlModel;
using Kingdee.BOS.Util;
using System.ComponentModel;
namespace Jac.XkDemo.BOS.Business.PlugIn
{
    /// <summary>
    /// 【表单插件】设置标签标题
    /// </summary>
    [Description("【表单插件】设置标签标题"), HotUpdate]
    public class SetLabelTextFormPlugIn : AbstractDynamicFormPlugIn
    {
        public override void EntityRowClick(EntityRowClickEventArgs e)
        {
            base.EntityRowClick(e);
            if (e.Key.EqualsIgnoreCase("FPOOrderEntry"))
            {
                // 获取单据体总行数
                var rowCount = this.Model.GetEntryRowCount(e.Key);
                // 获取单据体选中行
                var grid = this.View.GetControl<EntryGrid>(e.Key);
                var selectedRowCount = grid.GetSelectedRows().Length;
                var msg = string.Format("{0}总行数:{1},选中行数:{2}", this.View.BillBusinessInfo.GetEntity(e.Key).Name, rowCount, selectedRowCount);
                // 设置标签标题
                this.View.GetControl("F_Jac_Lable").SetCustomPropertyValue("Text", msg);
                // 设置标签标题前景色
                this.View.GetControl("F_Jac_Lable").SetCustomPropertyValue("ForeColor", "#ff0000");
                // 设置标签标题背景色
                //this.View.GetControl("F_Jac_Lable").SetCustomPropertyValue("BackColor", "#ead1dc");
            }
        }
    }
}


<2>拷贝插件组件到应用站点的WebSite\Bin目录下,重启IIS。


<3>BOSIDE扩展采购订单,新增标签控件,并拖放到页签控件附近,注册表单插件,保存元数据,开发完毕。


【功能验证】

<1>登录业务站点,打开采购订单新增界面,选中明细信息单据体数据行,效果如下图。

---------------------------------------------------------------------------------------------------------













【金蝶云星空BOS二次开发案例演示】https://vip.kingdee.com/article/94751030918525696

二开案例.表单插件.设置标签标题

【应用场景】设置标签标题。【案例演示】采购订单,新增标签控件,显示明细信息单据体总行数和选中行数。【实现步骤】<1>编写表单插件,代...
点击下载文档
确认删除?
回到顶部
客服QQ
  • 客服QQ点击这里给我发消息