Additionally, you might need to allow the label and the image elements to pass the mouse input to their parent. This can be achieved by setting the following properties:
myLabelElement.ShouldHandleMouseInput = false;
myLabelElement.NotifyParentOnMouseInput = true;
I hope you find this useful. Do not hesitate to write back if you have any additional questions.