Event Checked for button on Cross Platform Xamarin [closed]

2

Is it possible to create a button with the event Checked in Xamarin ? If so, how?

    
asked by anonymous 19.10.2016 / 17:29

1 answer

0

try this way

checkbox.Click += (o, e) => {
    if (checkbox.Checked)
        // checkbox selecionado
    else
        // checkbox nao selecionado
};
    
19.10.2016 / 17:40