|
|
@ -35,7 +35,7 @@
|
|
|
|
DropCommand="{Binding OnDropB, Source={x:Reference root}}"
|
|
|
|
DropCommand="{Binding OnDropB, Source={x:Reference root}}"
|
|
|
|
/>
|
|
|
|
/>
|
|
|
|
</Border.GestureRecognizers>
|
|
|
|
</Border.GestureRecognizers>
|
|
|
|
<Image Source="bag.png"></Image>
|
|
|
|
<Image Source="bag.png" ToolTipProperties.Text="Pour m'utiliser il faut cliquer sur le boutton swap avant ^^"></Image>
|
|
|
|
</Border>
|
|
|
|
</Border>
|
|
|
|
|
|
|
|
|
|
|
|
<Button
|
|
|
|
<Button
|
|
|
@ -43,6 +43,7 @@
|
|
|
|
Grid.Row="0" Grid.Column="1"
|
|
|
|
Grid.Row="0" Grid.Column="1"
|
|
|
|
Text="Swap"
|
|
|
|
Text="Swap"
|
|
|
|
Clicked="OnButtonSwapClicked"
|
|
|
|
Clicked="OnButtonSwapClicked"
|
|
|
|
|
|
|
|
ToolTipProperties.Text="Click to swap your tiles !"
|
|
|
|
Style="{StaticResource GameButton}"/>
|
|
|
|
Style="{StaticResource GameButton}"/>
|
|
|
|
|
|
|
|
|
|
|
|
<Button
|
|
|
|
<Button
|
|
|
@ -50,12 +51,14 @@
|
|
|
|
Grid.Row="2" Grid.Column="1"
|
|
|
|
Grid.Row="2" Grid.Column="1"
|
|
|
|
Text="Skip / End Turn" WidthRequest="200"
|
|
|
|
Text="Skip / End Turn" WidthRequest="200"
|
|
|
|
Clicked="OnButtonSkipClicked"
|
|
|
|
Clicked="OnButtonSkipClicked"
|
|
|
|
|
|
|
|
ToolTipProperties.Text="Click for skip / end your turn ;)"
|
|
|
|
Style="{StaticResource GameButton}"/>
|
|
|
|
Style="{StaticResource GameButton}"/>
|
|
|
|
|
|
|
|
|
|
|
|
<Button
|
|
|
|
<Button
|
|
|
|
HorizontalOptions="Start"
|
|
|
|
HorizontalOptions="Start"
|
|
|
|
Grid.Row="2" Grid.Column="1"
|
|
|
|
Grid.Row="2" Grid.Column="1"
|
|
|
|
Text="Settings"
|
|
|
|
Text="Settings"
|
|
|
|
|
|
|
|
ToolTipProperties.Text="Click to check your settings -_-"
|
|
|
|
Style="{StaticResource GameButton}"/>
|
|
|
|
Style="{StaticResource GameButton}"/>
|
|
|
|
|
|
|
|
|
|
|
|
<CollectionView Grid.Row="0" Grid.Column="1" ItemsSource="{Binding PlayerList[0].Tiles}"
|
|
|
|
<CollectionView Grid.Row="0" Grid.Column="1" ItemsSource="{Binding PlayerList[0].Tiles}"
|
|
|
|