ANRTournament.MainWindow.SortPlayers C# (CSharp) Method

SortPlayers() private method

private SortPlayers ( ) : void
return void
        private void SortPlayers()
        {
            SortDescription tablesort = new SortDescription("Place", ListSortDirection.Ascending);
            this.dgPointsTable.Items.SortDescriptions.Clear();
            this.dgPointsTable.Items.SortDescriptions.Add(tablesort);
        }
MainWindow