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; /// /// ÅŒã‚Ì“o˜^Žž‚̃`ƒFƒbƒN‚ł͂Ȃ­A€–ÚƒtƒH[ƒJƒXˆÚ“®Žž‚̃`ƒFƒbƒN /// public bool CheckAll { get; set; } = false; public bool ShowErrMsg { get; set; } = false; /// /// yyyy/MM/dd /// public string ChangeDate { get; set; } public bool ResetOrgValue { get; set; } public object Tag { get; set; } = null; } }