BuildFeed/BuildFeedApp-Full/MainPage.xaml
Thomas Hounsell 8126e77347 App vNext: Add incremental loading of build listing
Also move to live API
2015-10-15 10:22:55 +01:00

25 lines
1000 B
XML

<Page
x:Class="BuildFeedApp.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:BuildFeedApp"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d" Loaded="Page_Loaded">
<Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
<ListView x:Name="lvContent" IncrementalLoadingTrigger="Edge" IncrementalLoadingThreshold="0" DataFetchSize="1">
<ListView.ItemTemplate>
<DataTemplate>
<TextBlock Text="{Binding FullBuildString}" />
</DataTemplate>
</ListView.ItemTemplate>
<ListView.ItemsPanel>
<ItemsPanelTemplate>
<ItemsStackPanel Orientation="Vertical" />
</ItemsPanelTemplate>
</ListView.ItemsPanel>
</ListView>
</Grid>
</Page>