You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
/************************************************************** * Description: * CustPOSendMailUIAction.cs * Product: U9 * Co. : UFSoft Group * Author : Auto Generated * version: 1.0 **************************************************************/ using System; using System.Collections; using System.Collections.Generic; using System.Text; using UFSoft.UBF.Util.Log; using UFSoft.UBF.UI.MD.Runtime; using UFSoft.UBF.UI.ActionProcess;
namespace UFIDA.U9.Cust.WC.CustPOSendMailUI { public partial class CustPOSendMailUIAction { public override void OnInitAction() { base.OnInitAction(); //提示:可注册你自己的方法到相应的事件中,如下.
//this.CommonAction.BeforeLoad += new ActionLoadDelegate(CommonAction_BeforeLoad);
} private void OnSend_Extend(object sender, UIActionEventArgs e) {
//调用模版定义的默认实现方法.如需扩展,请直接在此编程.
this.OnSend_DefaultImpl(sender,e); } private void OnClose_Extend(object sender, UIActionEventArgs e) {
//调用模版定义的默认实现方法.如需扩展,请直接在此编程.
this.OnClose_DefaultImpl(sender,e); } #region UBF 内置两数据处理Action
//数据加载的扩展
private void OnLoadData_Extend(object sender, UIActionEventArgs e) { this.OnLoadData_DefaultImpl(sender,e); }
//数据收集的扩展
private void OnDataCollect_Extend(object sender, UIActionEventArgs e) { this.OnDataCollect_DefaultImpl(sender,e); } #endregion
} }
|