| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <Page
- x:Class="YJMPD_UWP.Views.StatisticsView"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:local="using:YJMPD_UWP.Views"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- mc:Ignorable="d">
- <ScrollViewer>
- <StackPanel Style="{StaticResource Base}" >
- <StackPanel Margin="0,10,0,0">
- <TextBlock Text="{Binding Information}" Style="{StaticResource Subtext}" />
- </StackPanel>
- <StackPanel Margin="0,10,0,0">
- <TextBlock Text="Total Distance Walked" Style="{StaticResource Header}" />
- <TextBlock Text="{Binding Distance}" />
- </StackPanel>
- <StackPanel Margin="0,10,0,0">
- <TextBlock Text="Total Matches" Style="{StaticResource Header}" />
- <TextBlock Text="{Binding MatchesCount}" />
- </StackPanel>
- <StackPanel Margin="0,10,0,0">
- <TextBlock Text="Times Leader" Style="{StaticResource Header}" />
- <TextBlock Text="{Binding LeaderCount}" />
- </StackPanel>
- <StackPanel Margin="0,10,0,0">
- <TextBlock Text="Points" Style="{StaticResource Header}" />
- <RelativePanel>
- <TextBlock Text="Total:" Style="{StaticResource Subtext}" RelativePanel.AlignLeftWithPanel="True"/>
- <TextBlock Text="{Binding PointsTotal}" RelativePanel.AlignRightWithPanel="True"/>
- </RelativePanel>
- <RelativePanel>
- <TextBlock Text="Avg:" Style="{StaticResource Subtext}" RelativePanel.AlignLeftWithPanel="True"/>
- <TextBlock Text="{Binding PointsAverage}" RelativePanel.AlignRightWithPanel="True"/>
- </RelativePanel>
- <RelativePanel>
- <TextBlock Text="Max:" Style="{StaticResource Subtext}" RelativePanel.AlignLeftWithPanel="True"/>
- <TextBlock Text="{Binding PointsMax}" RelativePanel.AlignRightWithPanel="True"/>
- </RelativePanel>
- <RelativePanel>
- <TextBlock Text="Min:" Style="{StaticResource Subtext}" RelativePanel.AlignLeftWithPanel="True"/>
- <TextBlock Text="{Binding PointsMin}" RelativePanel.AlignRightWithPanel="True"/>
- </RelativePanel>
-
- </StackPanel>
- </StackPanel>
- </ScrollViewer>
- </Page>
|