BuildFeed/BuildFeedApp-Full/MainPage.xaml

25 lines
917 B
Plaintext
Raw Normal View History

2015-10-07 14:30:53 +08:00
<Page
x:Class="BuildFeedApp.MainPage"
2015-10-07 14:30:53 +08:00
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:BuildFeedApp"
2015-10-07 14:30:53 +08:00
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d" Loaded="Page_Loaded">
2015-10-07 14:30:53 +08:00
<Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
<ListView x:Name="lvContent">
<ListView.ItemTemplate>
<DataTemplate>
<TextBlock Text="{Binding FullBuildString}" />
</DataTemplate>
</ListView.ItemTemplate>
<ListView.ItemsPanel>
<ItemsPanelTemplate>
2015-10-12 17:02:50 +08:00
<ItemsStackPanel Orientation="Vertical" />
</ItemsPanelTemplate>
</ListView.ItemsPanel>
</ListView>
2015-10-07 14:30:53 +08:00
</Grid>
</Page>