<dxg:GridControl x:Name="m_grid" SelectionMode="Row" AutoGenerateColumns="AddNew" ItemsSource="{Binding Path=MyDT,Mode=TwoWay}">
<dxg:GridControl.Columns>
<dxg:GridColumn x:Name="col_A" AllowEditing="False" FieldName="A" />
<dxg:GridColumn x:Name="col_B" AllowEditing="False" FieldName="B" />
<dxg:GridColumn x:Name="col_C" AllowEditing="False" FieldName="C" />
<dxg:GridColumn x:Name="col_D" AllowEditing="False" FieldName="D" />
<dxg:GridColumn x:Name="col_E" AllowEditing="True" FieldName="E" />
</dxg:GridControl.Columns>
</dxg:GridControl>
I have a Grid control in a wpf application am developing using MVVM design battern. My GridControl is bound to a DataTable in my view model "MyDT". Now one of the columns in "MyDT" is of type bool, so the GridControl converts it to a checkbox. This is the only column in my GridControl which is editable, the remaining columns are uneditable, I have made sure in the xaml. What I need to do is trigger an event when a checkbox is ticked/unticked in any of the rows in the GridControl, by binding to a property in my viewmodel. How would the xaml change?