예제 #1
0
        /// <summary>
        /// 편집모드에서 엔터를 쳤을 때의 액션목록입니다.
        /// </summary>

        public EasyGridViewParent()
            : base()
        {
            _editingControlEvent = new PreviewKeyDownEventHandler(EditingControl_PreviewKeyDown);
            Now        = new PositionOnList(-1, -1);
            Before     = new PositionOnList(-1, -1);
            _editables = new List <bool?>();
            _itemTypes = new List <ItemTypes>();
        }
예제 #2
0
 public DataGridViewCell Cell(PositionOnList pos)
 {
     return(this.Rows[pos.Row].Cells[pos.Col]);
 }