14 строки
350 B
Plaintext
14 строки
350 B
Plaintext
@inject AppState AppState
|
|
|
|
<StackLayout Orientation="StackOrientation.Horizontal">
|
|
<Button Text="+1" OnClick="@HandleClick" />
|
|
<Label FontSize="30" FontAttributes="FontAttributes.Italic" Text="@("You have pressed " + AppState.Counter + " times")" />
|
|
</StackLayout>
|
|
|
|
@code {
|
|
void HandleClick()
|
|
{
|
|
AppState.Counter++;
|
|
}
|
|
}
|