Why doesn\'t WPF border control have a mousedoubleclick event? I have a ItemsControl with some layout stuff in it for a DataTemplate. I want to handle the double click eve
MouseDoubleClick is declared on Control so you just need an instance of some Control in your ItemTemplate. The simplest thing to do is use the base Control class which doesn't have any other behavior and just give it a customized template with what's in your ItemTemplate now.