You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
824 B
15 lines
824 B
<?xml version="1.0" encoding="utf-8" ?>
|
|
<ContentView xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
x:Class="MauiSpark.Views.CTableauScore">
|
|
|
|
<Frame CornerRadius="5" Padding="0" VerticalOptions="Start" Margin="20,0,20,10" >
|
|
<Grid ColumnDefinitions="auto,*,auto,auto" ColumnSpacing="10">
|
|
<Label Grid.Column="0" Text="N°1" Margin="20" Style="{StaticResource TexteFrame}" />
|
|
<Label Grid.Column="1" Text="Joueur 1" Margin="20" Style="{StaticResource TexteFrame}" />
|
|
<Label Grid.Column="2" Text="5" Margin="20" Style="{StaticResource TexteFrame}" />
|
|
<Label Grid.Column="3" Text="10000" Margin="20" Style="{StaticResource TexteFrame}"/>
|
|
</Grid>
|
|
</Frame>
|
|
</ContentView>
|