What is the simplest way to bind an ICommand to a DataGridTextColumn that will handle a user double click on that column without code behind? Can I somehow expose an underlying FE and do it all in the XAML?
This particular column is read only and here is the xaml for it:
<dg:DataGridTextColumn Header="Number" Binding="{Binding BusinessId}"
Width="75" IsReadOnly="True" CanUserReorder="False"
/>
Cheers,
Berryl