Clicker Mania 2.0
Start
MainPage.xaml
<!-- User Interface (UI): Clicker Mania 3.0 -->
<StackLayout Padding="20" BackgroundColor="Lime">
<!-- Title -->
<Label Text="Clicker Mania 3.0" FontSize="Large" />
<!-- Timer -->
<Label Text="Timer" />
<Entry x:Name="Timer" Text="0" />
<!-- Clicks -->
<Label Text="Clicks" />
<Entry x:Name="Clicks" Text="0" />
<!-- Clicks Per Minute -->
<Label Text="Clicks Per Minute" />
<Entry x:Name="CPM" Text="0" />
<!-- Button -->
<Button Text="Click" Clicked="OnButtonClicked" />
</StackLayout>MainPage.xaml.cs
Demo

Last updated