I have an ellipse (inside a grid of a UserControl) and created this event handler for MouseDown but why it is never called ?
private void ellipse1_MouseDown(object sender, MouseButtonEventArgs e)
{
MessageBox.Show("Ellipse");
}
I have no children inside the ellipse so there is no event bubbling involved. This is crazy behavior.