DataGridTextColumn event binding
问题 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 回答1: the short answer is no. you cant create a new command property on a column in