Command Binding to Routed Event in WPF User-control
问题 I want to bind Viewmodel command to Usercontrol's Routed Event. Here is the detailed explanation of what I have. I have a User Control which have one Image (which shows image) and one Button at bottom ( Button to remove Image ). I am using a Usercontrol in a ListView . In my Usercontrol's Code behind I have a RoutedEventHandler to remove the Image : public event RoutedEventHandler RemoveImage; In the window where I use this Usercontrol, I have put: <uc:ucImageListItem x:Name="ImageListItem"