ANRTournament.MainWindow.SortPlayers C# (CSharp) Méthode

SortPlayers() private méthode

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