首页 > 代码库 > c#开发sap增强模块(addon)

c#开发sap增强模块(addon)

1.安装B1DE_v2.0.1;

2.新建项目

技术分享

 

3.为控件增加响应事件

添加新建项,打开自己建好的form,找到对应的控件,选择即可

技术分享

 

4.生产事件代码如下,自己添加处理函数即可

//------------------------------------------------------------------------------// <auto-generated>//     此代码由工具生成。//     运行时版本:2.0.50727.5485////     对此文件的更改可能会导致不正确的行为,并且如果//     重新生成代码,这些更改将会丢失。// </auto-generated>//------------------------------------------------------------------------------namespace culowor {    using SAPbobsCOM;    using SAPbouiCOM;    using B1WizardBase;               public class Button__OBJ_finaowor__btowor : B1Item {                public Button__OBJ_finaowor__btowor() {            FormType = "OBJ_finaowor";            ItemUID = "btowor";        }            [B1Listener(BoEventTypes.et_ITEM_PRESSED, false)]        public virtual void OnAfterItemPressed(ItemEvent pVal) {            bool ActionSuccess = pVal.ActionSuccess;            Form form = B1Connections.theAppl.Forms.Item(pVal.FormUID);            Item item = form.Items.Item("btowor");            Button button = ((Button)(item.Specific));            // ADD YOUR ACTION CODE HERE ...                                 }    }}

 

c#开发sap增强模块(addon)