BcsExplorerDemo.Controls.GridHelper.AddEmptyRow C# (CSharp) 메소드

AddEmptyRow() 개인적인 정적인 메소드

private static AddEmptyRow ( Grid grid ) : void
grid System.Windows.Controls.Grid
리턴 void
        private static void AddEmptyRow(Grid grid)
        {
            grid.RowDefinitions.Add(new RowDefinition { Height = new System.Windows.GridLength(1, GridUnitType.Star) });
        }
    }