namespace HotelPms.Client.Blazor.Util; /// /// EditGridのフォーカス制御 /// public class EditGridFocusEventArgs : EventArgs { public enum ActionType : int { Focus = 0, //EditMode, } public int Row { get; set; } = -1; public int Col { get; set; } = -1; public ActionType Action { get; set; } = ActionType.Focus; public bool Enabled { get; set; } = false; }