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.
24 lines
1.4 KiB
24 lines
1.4 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" xmlns:d="http://xamarin.com/schemas/2014/forms/design" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable="d" x:Class="TheGameExtreme.MainPage">
|
|
<StackLayout>
|
|
<!-- Place new controls here -->
|
|
<StackLayout
|
|
Orientation="Horizontal">
|
|
<Label x:Name="pile0" Text="coucou:" />
|
|
<Label x:Name="pile1" Text="hey"/>
|
|
<Label x:Name="pile2" Text="hi"/>
|
|
<Label x:Name="pile3" Text="hello"/>
|
|
</StackLayout>
|
|
<StackLayout x:Name="handCard"
|
|
Orientation="Horizontal">
|
|
<Button x:Uid="card1" x:Name="card1" Clicked="played" Text="Card 1" />
|
|
<Button x:Uid="card2" x:Name="card2" Clicked="played" Text="Card 2" />
|
|
<Button x:Uid="card3" x:Name="card3" Clicked="played" Text="Card 3" />
|
|
<Button x:Uid="card4" x:Name="card4" Clicked="played" Text="Card 4" />
|
|
<Button x:Uid="card5" x:Name="card5" Clicked="played" Text="Card 5" />
|
|
<Button x:Uid="card6" x:Name="card6" Clicked="played" Text="Card 6" />
|
|
<Button x:Uid="card7" x:Name="card7" Clicked="played" Text="Card 7" />
|
|
</StackLayout>
|
|
<Button Text="End Turn" Clicked="endTurn"/>
|
|
</StackLayout>
|
|
</ContentPage> |