I am finding that certain events are not firing even though implementd properly
I have templated Column, which has checkbox in it, and wired up MouleftbuttonUP, which also never fires, whereas MouseMove does fire for the checkBox
I tried alternate way of doing it
for XamGrid RowAdded Event does not fire. Intention is to retrieve the checkbox from templated colum, and assign Event for the LeftMousebuttonUp Event.
Hi,
The MouseLeftButtonUp event won't fire b/c the CheckBox handles that event internally.
Why are you trying to get a hold of the CheckBox? You should really stick to bindings to the IsChecked property of the CheckBox, especially since the xamGrid uses virtualization, so the same checkbox is used for different cells as it's scrolled out of view.
-SteveZ