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.
sae201_qwirkle/Qwirkle/QwirkleViews/Views/TileCircle.xaml

22 lines
926 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="Qwirkle.Views.TileCircle"
x:Name="root">
<Grid>
<Label Text="{Binding Shape, Source={x:Reference root}}"></Label>
<Rectangle HeightRequest="70"
Grid.Row="0"
Grid.Column="0"
WidthRequest="70"
VerticalOptions="Center"
HorizontalOptions="Center"
BackgroundColor="{Binding BC, Source={x:Reference root}}"/>
<Ellipse HeightRequest="50"
WidthRequest="50"
BackgroundColor="{Binding Color, Source={x:Reference root}}"
VerticalOptions="Center"
HorizontalOptions="Center"/>
</Grid>
</ContentView>