How can I check is there checkbox on my windows phone page? So, I add WrapPanel to my page:
_wp = new WrapPanel
{
Orientation = System.Windows.Controls.Orientation.Horizontal,
Height = 80,
};
_tb = new TextBlock
{
Text = gameText,
Width = 250
};
_wp.Children.Add(_tb);
_cb = new CheckBox();
_wp.Children.Add(_cb);
this.Items.Add(_wp);
but I need write handlers to checkbox. I can't do something about this:
_cb = new CheckBox { CheckedChanged += my_handler }
So, how can I do it?
UPD:
I need make only one CheckBox checked. In handler I want to do all checkboxes but sender to checked=false.