mirror of
https://gitlab.com/buildfeed/BuildFeed.git
synced 2024-03-22 21:10:34 +08:00
cb3babd1ee
It literally does nothing more than dump every build in a listview.
25 lines
936 B
XML
25 lines
936 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">
|
|
<ListView.ItemTemplate>
|
|
<DataTemplate>
|
|
<TextBlock Text="{Binding FullBuildString}" />
|
|
</DataTemplate>
|
|
</ListView.ItemTemplate>
|
|
<ListView.ItemsPanel>
|
|
<ItemsPanelTemplate>
|
|
<ItemsWrapGrid ScrollViewer.HorizontalScrollMode="Enabled" />
|
|
</ItemsPanelTemplate>
|
|
</ListView.ItemsPanel>
|
|
</ListView>
|
|
</Grid>
|
|
</Page>
|