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
Update: Sorry, my bad - late hour
Inside your mouse button down event get ClickCount
// e.Handled = true; optional if (e.ClickCount > 1) { // here comes double click and more :) }