You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.6 KiB
C#
56 lines
1.6 KiB
C#
using System;
|
|
|
|
namespace BP.Sys
|
|
{
|
|
/// <summary>
|
|
/// 表单事件类的常量
|
|
/// </summary>
|
|
public class EventListFrm
|
|
{
|
|
/// <summary>
|
|
/// 表单载入前
|
|
/// </summary>
|
|
public const string FrmLoadBefore = "FrmLoadBefore";
|
|
/// <summary>
|
|
/// 表单载入后
|
|
/// </summary>
|
|
public const string FrmLoadAfter = "FrmLoadAfter";
|
|
/// <summary>
|
|
/// 表单保存前
|
|
/// </summary>
|
|
public const string SaveBefore = "SaveBefore";
|
|
/// <summary>
|
|
/// 表单保存后
|
|
/// </summary>
|
|
public const string SaveAfter = "SaveAfter";
|
|
/// <summary>
|
|
/// 创建OID
|
|
/// </summary>
|
|
public const string CreateOID = "CreateOID";
|
|
/// <summary>
|
|
/// 附件上传前
|
|
/// </summary>
|
|
public const string AthUploadeBefore = "AthUploadeBefore";
|
|
/// <summary>
|
|
/// 上传后.
|
|
/// </summary>
|
|
public const string AthUploadeAfter = "AthUploadeAfter";
|
|
/// <summary>
|
|
/// 从表保存前
|
|
/// </summary>
|
|
public const string DtlRowSaveBefore = "DtlRowSaveBefore";
|
|
/// <summary>
|
|
/// 从表保存后
|
|
/// </summary>
|
|
public const string DtlRowSaveAfter = "DtlRowSaveAfter";
|
|
/// <summary>
|
|
/// 从表保存前
|
|
/// </summary>
|
|
public const string DtlRowDelBefore = "DtlRowDelBefore";
|
|
/// <summary>
|
|
/// 从表保存后
|
|
/// </summary>
|
|
public const string DtlRowDelAfter = "DtlRowDelAfter";
|
|
}
|
|
}
|