How to disable a keyboard shortcut handler in wpf

Introduction:

WPF Controls like DataGrid have default shortcut keys. For example, if you try to select any row and press Delete button then the grid row will be deleted. This is the default behavior. We can disable it in WPF the MVVM way by using InputBindings. InputBindings represents a binding between an input gesture and a command.

How did I do it:

Here we will see how to disable default keyboard shortcut in DataGrid.

<datagrid itemssource="{Binding Values}">
  <datagrid.inputbindings>
    <keybinding command="{Binding NotACommand}" key="Delete" modifiers="Control"></keybinding>
  </datagrid.inputbindings>
</datagrid>

And in your viewmodel, the command NotACommand will look like this.

internal class MainWindowViewModel {
  public ICommand NotACommand  {
    get {
      return ApplicationCommands.NotACommand;
    }
  }
}

Setting Up Kafka

Apache Kafka is a high-throughput, low-latency event processing system designed to handle millions of data feeds per second. It has the c...… Continue reading

Libish Varghese Jacob

Libish Varghese JacobI am a lead engineer at a prominent wind turbine manufacturing firm. My interests span a diverse range, and immersing myself in technology is one of them. This platform serves as my primary knowledge base, where I seek information and insights. Moreover, I utilize this platform to share my experiences and experiments, hoping they may benefit those following a similar path. It's important to note that the suggestions I express here are based on my best knowledge at the time of writing and may not necessarily represent the optimal solutions. I wholeheartedly welcome any comments you may have to improve or refine my ideas. Your feedback is greatly appreciated and valued.