Tagged Questions
0
votes
1answer
38 views
WPF MVVM - Activate ViewModel-command by use of hot keys from MainWindow
I have an MVVM application in which the MainWindow contains a grid with several views.
In one of the viewmodels there is a command which I can activate by using hot keys in its corresponding view. I ...
0
votes
1answer
111 views
Binding DataGrid.CurrentItem
All,
I have a DataGrid with it's CurrentItem property bound to some property in my VM. I also have an ICommand that creates a new object, adds it to the collection that the DataGrid's ItemSource is ...
0
votes
0answers
93 views
Wonky Key Binding in TreeView
I have a TreeView, I'd like to rename the TreeViewItems when I hit F2.
I'd like to do this with MVVM and no code behind.
I'm having trouble getting the binding to apply to the correct TreeViewItem.
I ...
2
votes
2answers
146 views
Context-sensitive command with MVVM
I have a custom component that is basically a text box with an attached button. The button is supposed to perform an action on the text box; for example clicking the button could fill the text box ...
0
votes
1answer
309 views
DataGrid Multiple KeyBinding to same function, how to know which key i have pressed
I have this xaml:
<DataGrid.InputBindings>
<KeyBinding Key="a" Command="{Binding Path=Function}" CommandParameter="{Binding ...
1
vote
2answers
333 views
LeftAlt Keybinding in WPF
I'm trying to bind Left ALT key with a command to toggle visibility of a menu in WPF.
But it doesn't work.. Command is not firing..
<Window.InputBindings>
<KeyBinding
...
0
votes
1answer
994 views
Set InputBinding(KeyboardBinding) in ListViewItem
I wish to set the Inputbinding of a listViewitem ... It should be a Keyborad binding and not a mouse binding...
I want to Execute a function in my view model when the User selectes an item and ...
2
votes
2answers
307 views
Multiple KeyBinding like Visual Studio in WPF
I have tried to read many posts on StackOverflow about how to implement the KeyBinding like Visual Studio Ctrl+Shift+ A or Ctrl+K,Ctrl+C but no luck
I have found this article on on blogspot ...
1
vote
1answer
124 views
Conditional Keybinding
I was wandering if someone could explain to me how I could do a conditional key binding (using an MVVM pattern), at the moment I have
<Window.InputBindings>
<KeyBinding ...
1
vote
0answers
314 views
TreeViewItems and Keybinding
I'm trying to set keybinding on my TreeView items using technique described here(the first answer). So I have a TreeView in XAML, an ICommand property defined in TreeView item's ViewModel, and a ...
1
vote
2answers
678 views
Winform->WPF MVVM Keybinding Error?
I need some assistance in getting WPF KeyBindings working when being called from a WinForm application. I've created what I think is the basic parts to demonstrate the problem. I can provide an sample ...
3
votes
2answers
1k views
WPF: KeyBinding for Tab, Swallows Tab and Doesn't Pass It Along
I've got a textbox where I have this:
<KeyBinding Command="{Binding MyCommand}" Key="Tab"/>
Problem is it swallows the Tab and doesn't tab to the next control.
How can I trap the Tab for the ...
2
votes
2answers
7k views
WPF MVVM KeyBinding not being recognized right away and not always working
For whatever reason, the KeyBindings for my UserControl aren't working as soon as my WPF Application loads. They do work after I press a button on the form but not when I set focus to the form by ...
1
vote
1answer
453 views
Multiple Keybinding to a single command
My window has just a listview. This facilitates the users to incremental search the db. Since the design does not have a textbox, i've to globally handle the keys. I think it could be achieved by ...
25
votes
6answers
12k views
Keybinding a RelayCommand
I'm using the RelayCommand in my app. It's great for putting the code in the viewmodel, but how do I bind keystrokes to my command?
RoutedUICommand has its InputGestures property, which makes the ...