1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
| namespace HotelPms.Share.Windows.Component
| {
| public class GridSelInfo
| {
| public enum EFocusType : int
| {
| Defalut = 0,
| Index,
| Data,
| }
|
| /// <summary>
| /// 0.各リスト初期時のフォーカス(Row,Col,Data無視)
| /// 1.指定行番号でフォーカス
| /// 2.Dataでヒットされた行でフォーカス
| /// </summary>
| 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;
| }
| }
|
|