Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
415 views

KeyBinding on a TreeViewItem

I have a typical treeview and a viewmodel. The viewmodel has an observable collection of other viewmodels that serves as a data source for the tree. public class TreeViewVM { public ...
4
votes
2answers
2k views

XAML - How to have global inputBindings?

I have a WPF application with several windows. I would like to define GLOBAL inputBindings. To define LOCAL inputbindings, i just declare the input in Window.InputBindings or ...
3
votes
1answer
86 views

InputBinding and WebBrowser control

I have a very simple application where I'm trying to bind keyboard shortcuts to a WPF command that is bound to a menu item. The application itself consists of just a Menu and a WebBrowser control. ...
3
votes
1answer
645 views

How to remove input binding added through CommandManager.RegisterClassInputBinding?

I used CommandManager.RegisterClassInputBinding to add binding to the whole type. Now I wan't to remove it. This is what I tested. private void CommandBinding_Executed_1(object sender, ...
2
votes
1answer
76 views

Define KeyBindings in a UserControl, but have them applicable for the whole window?

There is a number of keyboard shortcuts that I'd like to be available application-wide, regardless of where the focus currently is. At the moment I've got those defined as ...
2
votes
2answers
846 views

Defining InputBindings within a Style

I'm creating a WPF app using the MVVM design pattern, and I'm trying to extend the TabItem control so that it closes the tab when the user clicks the middle mouse button. I'm trying to achieve this ...
2
votes
3answers
662 views

WPF Keyboard Modifier on MouseBinding

I'm working with the MVVM pattern in WPF (a bit new to both). I'd like to set up an InputBinding on a CheckBox that corresponds to a Control + Click event, but do not see a Modifiers property on the ...
2
votes
2answers
602 views

If we can't bind a MouseBinding's Command, what are we supposed to do?

I would love to be able to use a regular MouseBinding to capture a CTRL-Click event on my TextBlock. Unfortunately the Command property is not a dependency property and I'm using MVVM, so I can't bind ...
1
vote
0answers
215 views

InputBinding instead of PreviewKeyDown

In the MainView of my Code, i had this event to catch keyDown: #region Constructor PreviewKeyDown += SoftKeyMainPreviewKeyDown; #endregion private void SoftKeyMainPreviewKeyDown(object sender, ...
1
vote
1answer
529 views

Bind to a UserControl RoutedCommand from parent window

I'm trying to create a UserControl that displays a multi-page image and allows the user to zoom, rotate, and browse an image. The one part I'm having a problem with is getting the keyboard shortcuts ...
1
vote
2answers
353 views

Define InputBindings in Style

I would like to add a right click and left click command to each ListBoxItem in a Style. Is this possible? <Style TargetType="{x:Type ListBoxItem}"> <Setter Property="InputBindings"> ...
1
vote
1answer
268 views

How do I get input bindings which would trigger routed command?

I have a menuitem which have a command assigned to it (MyCommands.Indent) and two text areas, both having an input binding triggering MyCommands.Indent. The hard part is that input bindings have ...
0
votes
1answer
62 views

Caliburn Micro with WPF MouseBinding

I would like to capture a mouse click on a WPF <Rectangle> and route it to a command implementation using Caliburn Micro. Here is the markup: <Rectangle ... > ...
0
votes
0answers
39 views

Android - InputConnection in custom softkeyboard fails after return from barcode scan activity

I created a custom softkeyboard with a barcode button so that for any textfield the user has the option to fill the field with the result of a barcode scan. I've been testing on HTML forms which is ...
0
votes
1answer
99 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 ...
0
votes
0answers
20 views

How do relate UIElement.InputBindings and RoutedUICommand.Gestures?

I can not understand when each of the approaches should be used. I believe ShortCuts is the business of UI designer so if we follow MVVM InputBindigns are prefferable. But the same time UI controls ...
0
votes
1answer
102 views

WPF: how to make KeyBinding on a customcontrol work without focus

I have two custom controls. The first one consists of a textbox and a popup/dropdown. The other consist of a expander and some content inside the expander. Most of the time, I will display the second ...
0
votes
1answer
230 views

Shortcut keys not working after messagebox is shown

I have a Window with Keybindings in InputBindings defined. They work the first time and when i set the focus on any control on the form. But when a Messagbox is shown and I press "OK" they shortcut ...
0
votes
2answers
173 views

WPF InputBinding Ctrl+MWheelUp/Down Possible?

Is there a way I can bind a Command to Ctrl+MWheelUp/Down? U know in a browser, you can do the same to increase/decrease font size? I want to replicate that effect in WPF. Possible? I was looking at ...
0
votes
1answer
450 views

Can I enable PreviewClick using InputBindings in WPF?

I want to detect when a user clicks on an item on a listview, without using events as I do command binding and I don't like all the nonsense of the behaviours. I have tried this: <ListView ...
0
votes
1answer
753 views

ListBox MouseBinding to Command not working

I want to bind the MouseDoubleClick (or PreviewMouseDoubleClick) to my custom Command defined in my custom WPF Control. The problem is that it does not work. ... <Popup> ... <!--This ...
0
votes
1answer
225 views

MouseBinding overrides EventBindings in style

I created a named style on an image, and in the style I set an EventBinding for the MouseDown event to a handler at the ResourceDictionary's code-behind, it worked good. When I use the image as the ...