Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
635
KeyBindings in Cell when in edit mode
posted

I have a XamDataGrid. I have key bindings set up for some of the functions I provide to my users:

KeyGesture clearCellGesture = new KeyGesture(Key.NumPad0, ModifierKeys.Control);
KeyBinding clearCellBinding = new KeyBinding(ClearActiveCellCommand, clearCellGesture);
viewGrid.InputBindings.Add(clearCellBinding);

The problem I'm having is that they don't work when a cell is in edit mode. How do I get them to run?



Parents
No Data
Reply
  • 138253
    Offline posted

    Hello,

     

    I am just checking if you got this worked out or you still require any assistance or clarification on the matter. 

Children