I can find a lot of command mouse bindings to a button, but what if I want to bind a mousedown event to a binding (MVVM pattern)? I can't find the answer, probably it is something very small I don't see but can someone help me with this?
xaml:
<DataTemplate>
<Grid AllowDrop="True">
<Rectangle Width="100" Height="50" RadiusX="4" RadiusY="4" Fill="LightBlue"/>
<Label Content="{Binding EntityName}" MouseDown="{Binding DoSomething}"/>
</Grid>
</DataTemplate>