コード例 #1
0
ファイル: GridRow.cs プロジェクト: huamanhtuyen/VNACCS
        private void ProcessNewRowChange(GridPanel panel)
        {
            if (panel.ShowInsertRow == true)
            {
                if (IsInsertRow == true)
                {
                    panel.AddNewInsertRow();

                    SuperGrid.DoRowAddedEvent(panel, panel.Rows.Count - 2);

                    InvalidateLayout();
                }
            }
        }