using System;
|
using System.Collections.Generic;
|
using System.Text;
|
|
namespace HotelPms.Share.Windows.Util
|
{
|
public class CTextBoxArrayBaseEventArgs : EventArgs
|
{
|
public bool Cancel { get; set; } = false;
|
|
public int ChangeEditingModeResult { get; set; } = 4;
|
|
/// <summary>
|
/// ÅãÌo^Ì`FbNÅÍÈAÚtH[JXÚ®Ì`FbN
|
/// </summary>
|
public bool CheckAll { get; set; } = false;
|
public bool ShowErrMsg { get; set; } = false;
|
|
/// <summary>
|
/// yyyy/MM/dd
|
/// </summary>
|
public string ChangeDate { get; set; }
|
|
public bool ResetOrgValue { get; set; }
|
|
public object Tag { get; set; } = null;
|
}
|
}
|