namespace HotelPms.Share.Windows.Component { public class GridSelInfo { public enum EFocusType : int { Defalut = 0, Index, Data, } /// /// 0.各リスト初期時のフォーカス(Row,Col,Data無視) /// 1.指定行番号でフォーカス /// 2.Dataでヒットされた行でフォーカス /// public EFocusType FocusType { get; set; } = EFocusType.Defalut; public int Row { get; set; } = 0; public int Col { get; set; } = 0; public object Data { get; set; } = null; } }