diff --git a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/ViewModels/AnimalsViewModel.cs b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/ViewModels/AnimalsViewModel.cs
index b3730a1aa..fc58bb06d 100644
--- a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/ViewModels/AnimalsViewModel.cs
+++ b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/ViewModels/AnimalsViewModel.cs
@@ -148,7 +148,7 @@ void AddCats()
Animals.Add(new Animal
{
Name = "Abyssinian",
- Location = "Ethopia",
+ Location = "Ethiopia",
Details = "The Abyssinian is a breed of domestic short-haired cat with a distinctive tickedtabby coat, in which individual hairs are banded with different colors. The breed is named for Abyssinia (now called Ethiopia), where it is believed to have originated.",
ImageUrl = "https://upload.wikimedia.org/wikipedia/commons/thumb/9/9b/Gustav_chocolate.jpg/168px-Gustav_chocolate.jpg"
});
diff --git a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/ViewModels/GroupedAnimalsViewModel.cs b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/ViewModels/GroupedAnimalsViewModel.cs
index 84347f0e7..274f32ed4 100644
--- a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/ViewModels/GroupedAnimalsViewModel.cs
+++ b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/ViewModels/GroupedAnimalsViewModel.cs
@@ -97,7 +97,7 @@ void CreateAnimalsCollection()
new Animal
{
Name = "Abyssinian",
- Location = "Ethopia",
+ Location = "Ethiopia",
Details = "The Abyssinian is a breed of domestic short-haired cat with a distinctive tickedtabby coat, in which individual hairs are banded with different colors. The breed is named for Abyssinia (now called Ethiopia), where it is believed to have originated.",
ImageUrl = "https://upload.wikimedia.org/wikipedia/commons/thumb/9/9b/Gustav_chocolate.jpg/168px-Gustav_chocolate.jpg"
},
diff --git a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/EmptyView/EmptyViewDataTemplateSelectorPage.xaml b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/EmptyView/EmptyViewDataTemplateSelectorPage.xaml
index ad508fe97..4570571bd 100644
--- a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/EmptyView/EmptyViewDataTemplateSelectorPage.xaml
+++ b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/EmptyView/EmptyViewDataTemplateSelectorPage.xaml
@@ -35,14 +35,16 @@
OtherTemplate="{StaticResource BasicTemplate}" />
-
+
+ EmptyViewTemplate="{StaticResource SearchSelector}"
+ Grid.Row="1">
@@ -71,5 +73,5 @@
-
+
diff --git a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/EmptyView/EmptyViewFilteredPage.xaml b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/EmptyView/EmptyViewFilteredPage.xaml
index 5cc0c3947..4809b3fdc 100644
--- a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/EmptyView/EmptyViewFilteredPage.xaml
+++ b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/EmptyView/EmptyViewFilteredPage.xaml
@@ -3,13 +3,15 @@
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="CollectionViewDemos.Views.EmptyViewFilteredPage"
Title="EmptyView (string)">
-
+
+ EmptyView="No items match your filter."
+ Grid.Row="1">
@@ -38,5 +40,5 @@
-
+
diff --git a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/EmptyView/EmptyViewLoadSimulationPage.xaml b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/EmptyView/EmptyViewLoadSimulationPage.xaml
index bf62da1ed..932be6edd 100644
--- a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/EmptyView/EmptyViewLoadSimulationPage.xaml
+++ b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/EmptyView/EmptyViewLoadSimulationPage.xaml
@@ -3,7 +3,7 @@
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="CollectionViewDemos.Views.EmptyViewLoadSimulationPage"
Title="EmptyView (load simulation)">
-
+
@@ -34,5 +34,5 @@
-
+
diff --git a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/EmptyView/EmptyViewNullPage.xaml b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/EmptyView/EmptyViewNullPage.xaml
index 65e31ff1c..9c3778a5c 100644
--- a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/EmptyView/EmptyViewNullPage.xaml
+++ b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/EmptyView/EmptyViewNullPage.xaml
@@ -3,8 +3,8 @@
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="CollectionViewDemos.Views.EmptyViewNullPage"
Title="EmptyView (Null ItemsSource)">
-
+
-
+
diff --git a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/EmptyView/EmptyViewSwapPage.xaml b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/EmptyView/EmptyViewSwapPage.xaml
index 4f321f506..7cf846e6d 100644
--- a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/EmptyView/EmptyViewSwapPage.xaml
+++ b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/EmptyView/EmptyViewSwapPage.xaml
@@ -31,17 +31,19 @@
-
+
-
+
-
+
+ ItemsSource="{Binding Monkeys}"
+ Grid.Row="2">
@@ -70,5 +72,5 @@
-
+
diff --git a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/EmptyView/EmptyViewTemplatePage.xaml b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/EmptyView/EmptyViewTemplatePage.xaml
index a172f9a4b..4d888fd27 100644
--- a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/EmptyView/EmptyViewTemplatePage.xaml
+++ b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/EmptyView/EmptyViewTemplatePage.xaml
@@ -4,12 +4,14 @@
xmlns:controls="clr-namespace:CollectionViewDemos.Controls"
x:Class="CollectionViewDemos.Views.EmptyViewTemplatePage"
Title="EmptyView (template)">
-
+
-
+
@@ -51,5 +53,5 @@
-
+
diff --git a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/EmptyView/EmptyViewWithViewsFilteredPage.xaml b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/EmptyView/EmptyViewWithViewsFilteredPage.xaml
index c0853c85b..93a8882c8 100644
--- a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/EmptyView/EmptyViewWithViewsFilteredPage.xaml
+++ b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/EmptyView/EmptyViewWithViewsFilteredPage.xaml
@@ -3,12 +3,14 @@
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="CollectionViewDemos.Views.EmptyViewWithViewsFilteredPage"
Title="EmptyView (multiple views)">
-
+
-
+
@@ -55,5 +57,5 @@
-
+
diff --git a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Grouping/VerticalListEmptyGroupsPage.xaml b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Grouping/VerticalListEmptyGroupsPage.xaml
index fa2fb73e9..f66947432 100644
--- a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Grouping/VerticalListEmptyGroupsPage.xaml
+++ b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Grouping/VerticalListEmptyGroupsPage.xaml
@@ -3,7 +3,7 @@
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="CollectionViewDemos.Views.VerticalListEmptyGroupsPage"
Title="Grouping including empty groups">
-
+
@@ -48,5 +48,5 @@
-
+
diff --git a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Grouping/VerticalListGroupingPage.xaml b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Grouping/VerticalListGroupingPage.xaml
index 96f78d64f..58ed747c0 100644
--- a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Grouping/VerticalListGroupingPage.xaml
+++ b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Grouping/VerticalListGroupingPage.xaml
@@ -3,7 +3,7 @@
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="CollectionViewDemos.Views.VerticalListGroupingPage"
Title="Grouping (with DataTemplates)">
-
+
@@ -48,5 +48,5 @@
-
+
diff --git a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Grouping/VerticalListGroupingVariableSizeItemsPage.xaml b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Grouping/VerticalListGroupingVariableSizeItemsPage.xaml
index f41242022..45cb6f892 100644
--- a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Grouping/VerticalListGroupingVariableSizeItemsPage.xaml
+++ b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Grouping/VerticalListGroupingVariableSizeItemsPage.xaml
@@ -4,18 +4,19 @@
xmlns:controls="clr-namespace:CollectionViewDemos.Controls"
x:Class="CollectionViewDemos.Views.VerticalListGroupingVariableSizeItemsPage"
Title="Grouping with variable sized items">
-
-
+
+
-
+
+ ItemSizingStrategy="{Binding Source={x:Reference enumPicker}, Path=SelectedItem}"
+ Grid.Row="1">
@@ -56,7 +57,7 @@
-
+
diff --git a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Grouping/VerticalListTextGroupingPage.xaml b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Grouping/VerticalListTextGroupingPage.xaml
index 0bbd8c9dd..77a4e08b4 100644
--- a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Grouping/VerticalListTextGroupingPage.xaml
+++ b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Grouping/VerticalListTextGroupingPage.xaml
@@ -3,8 +3,8 @@
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="CollectionViewDemos.Views.VerticalListTextGroupingPage"
Title="Grouping (without DataTemplates)">
-
+
-
+
diff --git a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/HeadersAndFooters/HorizontalGridHeaderFooterViewPage.xaml b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/HeadersAndFooters/HorizontalGridHeaderFooterViewPage.xaml
index 8cce443c1..563ca0fd8 100644
--- a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/HeadersAndFooters/HorizontalGridHeaderFooterViewPage.xaml
+++ b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/HeadersAndFooters/HorizontalGridHeaderFooterViewPage.xaml
@@ -3,7 +3,7 @@
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="CollectionViewDemos.Views.HorizontalGridHeaderFooterViewPage"
Title="Grid header and footer (View)">
-
+
@@ -50,5 +50,5 @@
-
+
diff --git a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/HeadersAndFooters/VerticalListHeaderFooterDataTemplatePage.xaml b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/HeadersAndFooters/VerticalListHeaderFooterDataTemplatePage.xaml
index 37c46e619..cdb1a0bf0 100644
--- a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/HeadersAndFooters/VerticalListHeaderFooterDataTemplatePage.xaml
+++ b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/HeadersAndFooters/VerticalListHeaderFooterDataTemplatePage.xaml
@@ -3,7 +3,7 @@
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="CollectionViewDemos.Views.VerticalListHeaderFooterDataTemplatePage"
Title="Header and footer (DataTemplate)">
-
+
@@ -55,5 +55,5 @@
-
+
diff --git a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/HeadersAndFooters/VerticalListHeaderFooterStringPage.xaml b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/HeadersAndFooters/VerticalListHeaderFooterStringPage.xaml
index af0706cfa..926f44c5d 100644
--- a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/HeadersAndFooters/VerticalListHeaderFooterStringPage.xaml
+++ b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/HeadersAndFooters/VerticalListHeaderFooterStringPage.xaml
@@ -3,7 +3,7 @@
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="CollectionViewDemos.Views.VerticalListHeaderFooterStringPage"
Title="Header and footer (string)">
-
+
@@ -35,5 +35,5 @@
-
+
diff --git a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/HeadersAndFooters/VerticalListHeaderFooterViewPage.xaml b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/HeadersAndFooters/VerticalListHeaderFooterViewPage.xaml
index 6ae1272d6..56174fb41 100644
--- a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/HeadersAndFooters/VerticalListHeaderFooterViewPage.xaml
+++ b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/HeadersAndFooters/VerticalListHeaderFooterViewPage.xaml
@@ -3,7 +3,7 @@
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="CollectionViewDemos.Views.VerticalListHeaderFooterViewPage"
Title="Header and footer (View)">
-
+
@@ -49,5 +49,5 @@
-
+
diff --git a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Layout/HorizontalGridPage.xaml b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Layout/HorizontalGridPage.xaml
index 4c10b7393..0cb63adc1 100644
--- a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Layout/HorizontalGridPage.xaml
+++ b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Layout/HorizontalGridPage.xaml
@@ -3,7 +3,7 @@
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="CollectionViewDemos.Views.HorizontalGridPage"
Title="Horizontal grid (DataTemplate)">
-
+
@@ -36,5 +36,5 @@
-
+
diff --git a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Layout/HorizontalGridTextPage.xaml b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Layout/HorizontalGridTextPage.xaml
index b5dad6af7..0a8573dd9 100644
--- a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Layout/HorizontalGridTextPage.xaml
+++ b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Layout/HorizontalGridTextPage.xaml
@@ -3,7 +3,7 @@
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="CollectionViewDemos.Views.HorizontalGridTextPage"
Title="Horizontal grid (text)">
-
+
@@ -27,5 +27,5 @@
-
+
diff --git a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Layout/HorizontalListPage.xaml b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Layout/HorizontalListPage.xaml
index 0bdb505a3..4654083d5 100644
--- a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Layout/HorizontalListPage.xaml
+++ b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Layout/HorizontalListPage.xaml
@@ -3,7 +3,7 @@
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="CollectionViewDemos.Views.HorizontalListPage"
Title="Horizontal list (DataTemplate)">
-
+
@@ -36,5 +36,5 @@
-
+
diff --git a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Layout/HorizontalListTextPage.xaml b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Layout/HorizontalListTextPage.xaml
index 3d898570c..110923be9 100644
--- a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Layout/HorizontalListTextPage.xaml
+++ b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Layout/HorizontalListTextPage.xaml
@@ -3,7 +3,7 @@
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="CollectionViewDemos.Views.HorizontalListTextPage"
Title="Horizontal list (text)">
-
+
@@ -27,5 +27,5 @@
-
+
diff --git a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Layout/VerticalGridPage.xaml b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Layout/VerticalGridPage.xaml
index 7869309a1..45f023648 100644
--- a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Layout/VerticalGridPage.xaml
+++ b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Layout/VerticalGridPage.xaml
@@ -3,7 +3,7 @@
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="CollectionViewDemos.Views.VerticalGridPage"
Title="Vertical grid (DataTemplate)">
-
+
@@ -36,5 +36,5 @@
-
+
diff --git a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Layout/VerticalGridTextPage.xaml b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Layout/VerticalGridTextPage.xaml
index 2da7d8842..1eb8fd6e7 100644
--- a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Layout/VerticalGridTextPage.xaml
+++ b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Layout/VerticalGridTextPage.xaml
@@ -3,7 +3,7 @@
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="CollectionViewDemos.Views.VerticalGridTextPage"
Title="Vertical grid (text)">
-
+
@@ -27,5 +27,5 @@
-
+
diff --git a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Layout/VerticalListDataTemplateSelectorPage.xaml b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Layout/VerticalListDataTemplateSelectorPage.xaml
index a4541ec62..48cfe0b01 100644
--- a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Layout/VerticalListDataTemplateSelectorPage.xaml
+++ b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Layout/VerticalListDataTemplateSelectorPage.xaml
@@ -67,8 +67,8 @@
OtherMonkey="{StaticResource OtherMonkeyTemplate}" />
-
+
-
+
diff --git a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Layout/VerticalListPage.xaml b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Layout/VerticalListPage.xaml
index 2d409e20e..b969249f1 100644
--- a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Layout/VerticalListPage.xaml
+++ b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Layout/VerticalListPage.xaml
@@ -3,7 +3,7 @@
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="CollectionViewDemos.Views.VerticalListPage"
Title="Vertical list (DataTemplate)">
-
+
@@ -33,5 +33,5 @@
-
+
diff --git a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Layout/VerticalListRTLPage.xaml b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Layout/VerticalListRTLPage.xaml
index 911e60581..09219b63e 100644
--- a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Layout/VerticalListRTLPage.xaml
+++ b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Layout/VerticalListRTLPage.xaml
@@ -4,7 +4,7 @@
x:Class="CollectionViewDemos.Views.VerticalListRTLPage"
Title="Vertical list (RTL FlowDirection)"
FlowDirection="RightToLeft">
-
+
@@ -34,5 +34,5 @@
-
+
diff --git a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Layout/VerticalListTextPage.xaml b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Layout/VerticalListTextPage.xaml
index d4063cd4a..00ab090e9 100644
--- a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Layout/VerticalListTextPage.xaml
+++ b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Layout/VerticalListTextPage.xaml
@@ -3,7 +3,7 @@
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="CollectionViewDemos.Views.VerticalListTextPage"
Title="Vertical list (text)">
-
+
@@ -27,5 +27,5 @@
-
+
diff --git a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Scrolling/IncrementalLoadingPage.xaml b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Scrolling/IncrementalLoadingPage.xaml
index 479e75d0f..e5ad05fa9 100644
--- a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Scrolling/IncrementalLoadingPage.xaml
+++ b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Scrolling/IncrementalLoadingPage.xaml
@@ -3,7 +3,7 @@
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="CollectionViewDemos.Views.IncrementalLoadingPage"
Title="Incremental loading on scroll">
-
+
-
+
diff --git a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Scrolling/ItemsUpdatingScrollModePage.xaml b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Scrolling/ItemsUpdatingScrollModePage.xaml
index df062d5c1..1f06791f9 100644
--- a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Scrolling/ItemsUpdatingScrollModePage.xaml
+++ b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Scrolling/ItemsUpdatingScrollModePage.xaml
@@ -4,18 +4,19 @@
xmlns:controls="clr-namespace:CollectionViewDemos.Controls"
x:Class="CollectionViewDemos.Views.ItemsUpdatingScrollModePage"
Title="Scroll mode when adding items">
-
-
+
+
-
+
+ ItemsSource="{Binding Monkeys}"
+ Grid.Row="1">
@@ -44,5 +45,5 @@
-
+
diff --git a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Scrolling/ScrollToByIndexPage.xaml b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Scrolling/ScrollToByIndexPage.xaml
index a78a63dd1..9c92a814c 100644
--- a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Scrolling/ScrollToByIndexPage.xaml
+++ b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Scrolling/ScrollToByIndexPage.xaml
@@ -4,27 +4,29 @@
xmlns:controls="clr-namespace:CollectionViewDemos.Controls"
x:Class="CollectionViewDemos.Views.ScrollToByIndexPage"
Title="Scroll to index">
-
-
+
+
-
-
+
+
-
+
+ Clicked="OnButtonClicked"
+ Grid.Row="2" />
+ Scrolled="OnCollectionViewScrolled"
+ Grid.Row="3">
@@ -53,5 +55,5 @@
-
+
diff --git a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Scrolling/ScrollToByIndexWithGroupingPage.xaml b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Scrolling/ScrollToByIndexWithGroupingPage.xaml
index 4d67ba060..b636bb090 100644
--- a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Scrolling/ScrollToByIndexWithGroupingPage.xaml
+++ b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Scrolling/ScrollToByIndexWithGroupingPage.xaml
@@ -4,28 +4,30 @@
xmlns:controls="clr-namespace:CollectionViewDemos.Controls"
x:Class="CollectionViewDemos.Views.ScrollToByIndexWithGroupingPage"
Title="Scroll to index (grouped data)">
-
-
+
+
-
-
+
+
-
+
+ Clicked="OnButtonClicked"
+ Grid.Row="2" />
+ Scrolled="OnCollectionViewScrolled"
+ Grid.Row="3">
@@ -68,5 +70,5 @@
-
+
diff --git a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Scrolling/ScrollToByObjectPage.xaml b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Scrolling/ScrollToByObjectPage.xaml
index 87f0f3e1b..d40427546 100644
--- a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Scrolling/ScrollToByObjectPage.xaml
+++ b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Scrolling/ScrollToByObjectPage.xaml
@@ -4,27 +4,29 @@
xmlns:controls="clr-namespace:CollectionViewDemos.Controls"
x:Class="CollectionViewDemos.Views.ScrollToByObjectPage"
Title="Scroll to object">
-
-
+
+
-
-
+
+
-
+
+ Clicked="OnButtonClicked"
+ Grid.Row="2" />
+ Scrolled="OnCollectionViewScrolled"
+ Grid.Row="3">
@@ -53,5 +55,5 @@
-
+
diff --git a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Scrolling/ScrollToByObjectWithGroupingPage.xaml b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Scrolling/ScrollToByObjectWithGroupingPage.xaml
index cc318b887..8a1c02991 100644
--- a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Scrolling/ScrollToByObjectWithGroupingPage.xaml
+++ b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Scrolling/ScrollToByObjectWithGroupingPage.xaml
@@ -4,28 +4,30 @@
xmlns:controls="clr-namespace:CollectionViewDemos.Controls"
x:Class="CollectionViewDemos.Views.ScrollToByObjectWithGroupingPage"
Title="Scroll to object (grouped data)">
-
-
+
+
-
-
+
+
-
+
+ Clicked="OnButtonClicked"
+ Grid.Row="2" />
+ Scrolled="OnCollectionViewScrolled"
+ Grid.Row="3">
@@ -68,5 +70,5 @@
-
+
diff --git a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Selection/VerticalListMultiplePreSelectionPage.xaml b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Selection/VerticalListMultiplePreSelectionPage.xaml
index 28a25a0c1..ed33345f8 100644
--- a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Selection/VerticalListMultiplePreSelectionPage.xaml
+++ b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Selection/VerticalListMultiplePreSelectionPage.xaml
@@ -3,7 +3,7 @@
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="CollectionViewDemos.Views.VerticalListMultiplePreSelectionPage"
Title="Vertical list (multiple pre-selection)">
-
+
-
+
diff --git a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Selection/VerticalListMultipleSelectionPage.xaml b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Selection/VerticalListMultipleSelectionPage.xaml
index eca526d66..b0761e380 100644
--- a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Selection/VerticalListMultipleSelectionPage.xaml
+++ b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Selection/VerticalListMultipleSelectionPage.xaml
@@ -3,7 +3,8 @@
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="CollectionViewDemos.Views.VerticalListMultipleSelectionPage"
Title="Vertical list (multiple selection)">
-
+
@@ -26,7 +27,8 @@
+ SelectionChanged="OnCollectionViewSelectionChanged"
+ Grid.Row="1">
@@ -55,5 +57,5 @@
-
+
diff --git a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Selection/VerticalListSelectionColorPage.xaml b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Selection/VerticalListSelectionColorPage.xaml
index 7ccff0121..56d00d47f 100644
--- a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Selection/VerticalListSelectionColorPage.xaml
+++ b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Selection/VerticalListSelectionColorPage.xaml
@@ -20,7 +20,7 @@
-
+
@@ -51,5 +51,5 @@
-
+
diff --git a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Selection/VerticalListSinglePreSelectionPage.xaml b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Selection/VerticalListSinglePreSelectionPage.xaml
index 10550fc03..2d57d465d 100644
--- a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Selection/VerticalListSinglePreSelectionPage.xaml
+++ b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Selection/VerticalListSinglePreSelectionPage.xaml
@@ -3,12 +3,14 @@
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="CollectionViewDemos.Views.VerticalListSinglePreSelectionPage"
Title="Vertical list (single pre-selection)">
-
+
+ SelectionChangedCommand="{Binding MonkeySelectionChangedCommand}"
+ Grid.Row="1">
@@ -37,5 +39,5 @@
-
+
diff --git a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Selection/VerticalListSingleSelectionPage.xaml b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Selection/VerticalListSingleSelectionPage.xaml
index 35e6398c2..08645a72b 100644
--- a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Selection/VerticalListSingleSelectionPage.xaml
+++ b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Selection/VerticalListSingleSelectionPage.xaml
@@ -3,7 +3,8 @@
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="CollectionViewDemos.Views.VerticalListSingleSelectionPage"
Title="Vertical list (single selection)">
-
+
@@ -24,7 +25,8 @@
+ SelectionChanged="OnCollectionViewSelectionChanged"
+ Grid.Row="1">
@@ -53,5 +55,5 @@
-
+
diff --git a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Sizing/VerticalListDynamicSizeItemsPage.xaml b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Sizing/VerticalListDynamicSizeItemsPage.xaml
index 4a8968817..c419accf7 100644
--- a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Sizing/VerticalListDynamicSizeItemsPage.xaml
+++ b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Sizing/VerticalListDynamicSizeItemsPage.xaml
@@ -3,9 +3,11 @@
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="CollectionViewDemos.Views.VerticalListDynamicSizeItemsPage"
Title="Vertical list (dynamic item sizing)">
-
+
-
+
@@ -38,5 +40,5 @@
-
+
diff --git a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Sizing/VerticalListVariableSizeItemsPage.xaml b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Sizing/VerticalListVariableSizeItemsPage.xaml
index f66dd7ad4..1e7b32828 100644
--- a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Sizing/VerticalListVariableSizeItemsPage.xaml
+++ b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Sizing/VerticalListVariableSizeItemsPage.xaml
@@ -4,17 +4,18 @@
xmlns:controls="clr-namespace:CollectionViewDemos.Controls"
x:Class="CollectionViewDemos.Views.VerticalListVariableSizeItemsPage"
Title="Vertical list (variable size items)">
-
-
+
+
-
+
+ ItemSizingStrategy="{Binding Source={x:Reference enumPicker}, Path=SelectedItem}"
+ Grid.Row="1">
@@ -41,5 +42,5 @@
-
+
diff --git a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/SnapPoints/VerticalListSnapPointsPage.xaml b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/SnapPoints/VerticalListSnapPointsPage.xaml
index d46c33369..50f874e6b 100644
--- a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/SnapPoints/VerticalListSnapPointsPage.xaml
+++ b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/SnapPoints/VerticalListSnapPointsPage.xaml
@@ -4,28 +4,28 @@
xmlns:controls="clr-namespace:CollectionViewDemos.Controls"
x:Class="CollectionViewDemos.Views.VerticalListSnapPointsPage"
Title="Vertical list (snap points)">
-
-
+
+
-
-
-
+
+ ItemsSource="{Binding Monkeys}"
+ Grid.Row="2">
@@ -54,5 +54,5 @@
-
+
diff --git a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Spacing/HorizontalGridSpacingPage.xaml b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Spacing/HorizontalGridSpacingPage.xaml
index e83be97e6..581fb4406 100644
--- a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Spacing/HorizontalGridSpacingPage.xaml
+++ b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Spacing/HorizontalGridSpacingPage.xaml
@@ -4,12 +4,14 @@
xmlns:controls="clr-namespace:CollectionViewDemos.Controls"
x:Class="CollectionViewDemos.Views.HorizontalGridSpacingPage"
Title="Horizontal grid (spacing)">
-
+
+ ItemsLayout="HorizontalGrid, 4"
+ Grid.Row="1">
@@ -40,5 +42,5 @@
-
+
diff --git a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Spacing/HorizontalListSpacingPage.xaml b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Spacing/HorizontalListSpacingPage.xaml
index 9d06fc346..7503d655d 100644
--- a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Spacing/HorizontalListSpacingPage.xaml
+++ b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Spacing/HorizontalListSpacingPage.xaml
@@ -4,12 +4,14 @@
xmlns:controls="clr-namespace:CollectionViewDemos.Controls"
x:Class="CollectionViewDemos.Views.HorizontalListSpacingPage"
Title="Horizontal list (spacing)">
-
+
+ ItemsLayout="HorizontalList"
+ Grid.Row="1">
@@ -40,5 +42,5 @@
-
+
diff --git a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Spacing/VerticalGridSpacingPage.xaml b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Spacing/VerticalGridSpacingPage.xaml
index 9cdbbd3df..c482fd06a 100644
--- a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Spacing/VerticalGridSpacingPage.xaml
+++ b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Spacing/VerticalGridSpacingPage.xaml
@@ -4,12 +4,14 @@
xmlns:controls="clr-namespace:CollectionViewDemos.Controls"
x:Class="CollectionViewDemos.Views.VerticalGridSpacingPage"
Title="Vertical grid (spacing)">
-
+
+ ItemsLayout="VerticalGrid, 2"
+ Grid.Row="1">
@@ -40,5 +42,5 @@
-
+
diff --git a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Spacing/VerticalListSpacingPage.xaml b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Spacing/VerticalListSpacingPage.xaml
index 669b539ea..e4e6c8502 100644
--- a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Spacing/VerticalListSpacingPage.xaml
+++ b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Spacing/VerticalListSpacingPage.xaml
@@ -4,11 +4,13 @@
xmlns:controls="clr-namespace:CollectionViewDemos.Controls"
x:Class="CollectionViewDemos.Views.VerticalListSpacingPage"
Title="Vertical list (spacing)">
-
+
+ ItemsSource="{Binding Monkeys}"
+ Grid.Row="1">
@@ -37,5 +39,5 @@
-
+
diff --git a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Swipe/VerticalListSwipeContextItemsPage.xaml b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Swipe/VerticalListSwipeContextItemsPage.xaml
index 99d2760e1..7e9b90894 100644
--- a/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Swipe/VerticalListSwipeContextItemsPage.xaml
+++ b/9.0/UserInterface/Views/CollectionViewDemos/CollectionViewDemos/Views/Swipe/VerticalListSwipeContextItemsPage.xaml
@@ -4,7 +4,7 @@
xmlns:viewmodels="clr-namespace:CollectionViewDemos.ViewModels"
x:Class="CollectionViewDemos.Views.VerticalListSwipeContextItemsPage"
Title="Context menu items">
-
+
@@ -52,5 +52,5 @@
-
+