Slide 26
Slide 26 text
$ਵ۽জ۽ҳഅೞӝ
label = new Label
{
Text = "0ߣ ־࣑ܰणפ",
HorizontalOptions = LayoutOptions.Center,
VerticalOptions = LayoutOptions.CenterAndExpand
};
this.Content = new StackLayout
{
Children = { button, label }
};
}
void OnButtonClicked(object sender, EventArgs e)
{
label.Text = String.Format("{0}ߣ ־࣑ܰणפ”, ++clickTotal);
}
}
}