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.
33 lines
1.5 KiB
33 lines
1.5 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" />
|
|
<Label x:Name="pile1" />
|
|
<Label x:Name="pile2" />
|
|
<Label x:Name="pile3" />
|
|
</StackLayout>
|
|
<ScrollView
|
|
Orientation="Horizontal">
|
|
<StackLayout
|
|
Orientation="Horizontal">
|
|
<Button CommandParameter="card1" x:Name="card1" Clicked="played" />
|
|
<Button CommandParameter="card2" x:Name="card2" Clicked="played" />
|
|
<Button CommandParameter="card3" x:Name="card3" Clicked="played" />
|
|
<Button CommandParameter="card4" x:Name="card4" Clicked="played" />
|
|
<Button CommandParameter="card5" x:Name="card5" Clicked="played" />
|
|
<Button CommandParameter="card6" x:Name="card6" Clicked="played" />
|
|
<Button CommandParameter="card7" x:Name="card7" Clicked="played" />
|
|
</StackLayout>
|
|
</ScrollView>
|
|
<Button Text="End Turn" Clicked="endTurn"/>
|
|
</StackLayout>
|
|
</ContentPage> |