From 6ca33a86c57fcf9aaa412b1df454c276662ca3a9 Mon Sep 17 00:00:00 2001 From: Max Katz Date: Thu, 17 Sep 2020 11:16:16 -0400 Subject: [PATCH] Update samples/ControlCatalog/Pages/DataGridPage.xaml.cs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Dariusz KomosiƄski --- samples/ControlCatalog/Pages/DataGridPage.xaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/ControlCatalog/Pages/DataGridPage.xaml.cs b/samples/ControlCatalog/Pages/DataGridPage.xaml.cs index 1893c4e5e7..9b7bf3ab16 100644 --- a/samples/ControlCatalog/Pages/DataGridPage.xaml.cs +++ b/samples/ControlCatalog/Pages/DataGridPage.xaml.cs @@ -17,7 +17,7 @@ namespace ControlCatalog.Pages this.InitializeComponent(); var dataGridSortDescription = DataGridSortDescription.FromPath(nameof(Country.Region), ListSortDirection.Ascending, new ReversedStringComparer()); - var colelctionView1 = new DataGridCollectionView(Countries.All); + var collectionView1 = new DataGridCollectionView(Countries.All); colelctionView1.SortDescriptions.Add(dataGridSortDescription); var dg1 = this.FindControl("dataGrid1"); dg1.IsReadOnly = true;