leaderboard !!
continuous-integration/drone/push Build is failing
Details
continuous-integration/drone/push Build is failing
Details
parent
b9183452ec
commit
9d482d7373
@ -1,42 +1,42 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
|
||||||
<ContentView xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
<ContentView xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||||||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||||
x:Class="Qwirkle.Views.LeaderboardLine">
|
x:Class="Qwirkle.Views.LeaderboardLine"
|
||||||
|
x:Name="root">
|
||||||
|
|
||||||
<Grid ColumnDefinitions="4*, auto, 2*, auto, 2*, auto, 2*"
|
<Grid ColumnDefinitions="4*, auto, 2*, auto, 2*, auto, 2*"
|
||||||
RowDefinitions="50">
|
RowDefinitions="50">
|
||||||
|
|
||||||
<Label
|
<Label
|
||||||
Text="{Binding Name}"
|
Text="{Binding PlayerName}"
|
||||||
Style="{StaticResource ContentTab}"
|
Style="{StaticResource ContentTab}"/>
|
||||||
/>
|
|
||||||
<Rectangle
|
<Rectangle
|
||||||
Style="{StaticResource RectangleTab}"
|
Style="{StaticResource RectangleTab}"
|
||||||
Grid.Column="1"/>
|
Grid.Column="1"/>
|
||||||
|
|
||||||
<Label
|
<Label
|
||||||
Grid.Column="2"
|
Grid.Column="2"
|
||||||
Text="Date"
|
Text="{Binding Date, StringFormat='{0:MM/dd/yyyy}'}"
|
||||||
Style="{StaticResource ContentTab}"/>
|
Style="{StaticResource ContentTab}"/>
|
||||||
|
|
||||||
<Rectangle
|
<Rectangle
|
||||||
Style="{StaticResource RectangleTab}"
|
Style="{StaticResource RectangleTab}"
|
||||||
Grid.Column="3"/>
|
Grid.Column="3"/>
|
||||||
|
|
||||||
<Label
|
<Label
|
||||||
Grid.Column="4"
|
Grid.Column="4"
|
||||||
Text="Points"
|
Text="{Binding Points}"
|
||||||
Style="{StaticResource ContentTab}"/>
|
Style="{StaticResource ContentTab}"/>
|
||||||
|
|
||||||
<Rectangle
|
<Rectangle
|
||||||
Style="{StaticResource RectangleTab}"
|
Style="{StaticResource RectangleTab}"
|
||||||
Grid.Column="5"/>
|
Grid.Column="5"/>
|
||||||
|
|
||||||
<Label
|
<Label
|
||||||
Grid.Column="6"
|
Grid.Column="6"
|
||||||
Style="{StaticResource ContentTab}"
|
Style="{StaticResource ContentTab}"
|
||||||
Text="Victories"
|
Text="{Binding Victories}"/>
|
||||||
/>
|
|
||||||
|
|
||||||
</Grid>
|
</Grid>
|
||||||
</ContentView>
|
</ContentView>
|
||||||
|
Loading…
Reference in new issue