When we are disabling (IsEnabled="False"
) a DataGridCell it ceases to raise the Mouse Double Click event. We want to still be able to tap into the double click event to do something when the cell is double click (on both disabled and enabled states).
How do we do that?
Disabling the
DataGridCell
will disable all Mouse and Keyboard Events for that Cell. If you still need to respond to Mouse/Keyboard events try setting theIsReadOnly
Property.From First Link: