Is it possible to create a button with the event Checked
in Xamarin
?
If so, how?
Is it possible to create a button with the event Checked
in Xamarin
?
If so, how?
try this way
checkbox.Click += (o, e) => {
if (checkbox.Checked)
// checkbox selecionado
else
// checkbox nao selecionado
};