|
|
|
@ -5,12 +5,26 @@
|
|
|
|
|
Title="Board"
|
|
|
|
|
BackgroundColor="Bisque">
|
|
|
|
|
|
|
|
|
|
<Grid RowDefinitions="*,auto" ColumnDefinitions="*,auto">
|
|
|
|
|
<Grid RowDefinitions="*,auto" ColumnDefinitions="auto,*,auto">
|
|
|
|
|
<Frame BorderColor="DarkGray"
|
|
|
|
|
HeightRequest="50"
|
|
|
|
|
WidthRequest="50"
|
|
|
|
|
Grid.Column="0"
|
|
|
|
|
HorizontalOptions="Center"
|
|
|
|
|
VerticalOptions="Center"
|
|
|
|
|
Padding="0">
|
|
|
|
|
<Label Text="{Binding ThePartie.Dice1.Value}"
|
|
|
|
|
FontSize="16"
|
|
|
|
|
VerticalOptions="Center"
|
|
|
|
|
HorizontalOptions="Center"
|
|
|
|
|
TextColor="Black"
|
|
|
|
|
/>
|
|
|
|
|
</Frame>
|
|
|
|
|
<Image Source="maptest.png" Aspect="AspectFit" Grid.ColumnSpan="2" Grid.RowSpan="3"/>
|
|
|
|
|
|
|
|
|
|
<CollectionView ItemsSource="{Binding ListMap[0].Boards}"
|
|
|
|
|
Grid.Row="1"
|
|
|
|
|
Grid.Column="0"
|
|
|
|
|
Grid.Column="1"
|
|
|
|
|
SelectionMode="Single"
|
|
|
|
|
WidthRequest="350"
|
|
|
|
|
HeightRequest="350"
|
|
|
|
@ -46,7 +60,7 @@
|
|
|
|
|
</CollectionView>
|
|
|
|
|
|
|
|
|
|
<!-- Operation Grid -->
|
|
|
|
|
<CollectionView Grid.Row="0" Grid.Column="1"
|
|
|
|
|
<CollectionView Grid.Row="0" Grid.Column="2"
|
|
|
|
|
ItemsSource="{Binding ListMap[0].OperationGrid}"
|
|
|
|
|
ItemsLayout="VerticalGrid,4"
|
|
|
|
|
WidthRequest="200"
|
|
|
|
|