Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
3answers
1k views

WPF: Execute a Command Binding in a search field when pressing the enter button

I have a search field in my WPF app with a search button that contains a command binding. This works great, but how can i use the same command binding for the text field when pressing enter on the ...
6
votes
2answers
3k views

WPF DataGrid: CommandBinding to a double click instead of using Events

I know how to use the MouseDoubleClick event with my DataGrid to grab the selectedvalue, but how would one go about using command bindings instead? That way my ViewModel can handle the logic. So far ...
6
votes
1answer
3k views

Receiving CommandParameter Value in MVVM

I am binding my command like: <Button Command="{Binding NextCommand}" CommandParameter="Hello" Content="Next" /> Here, I also bind its CommandParameter property, now how to fetch ...
6
votes
4answers
8k views

How to bind Close command to a button

The easiest way is to implement ButtonClick event handler and invoke Window.Close() method. But how to do this through a command binding?
4
votes
1answer
501 views

Does Treeview use command bindings for expand/collapse?

The WPF Treeview responds to + and - keystrokes to expand and collapse nodes in the tree. Great! Is there an existing command I can bind my toolbar buttons or menu items to to perform the same ...
4
votes
2answers
2k views

WPF/MVVM - how to handle double-click on TreeViewItems in the ViewModel?

(Note - this is a re-post as my first question got posted under wrong headline: Here Sorry!) I have a standard WPF treeview and have bound items to view model classes. I now wish to handle behaviour ...
4
votes
2answers
1k views

WPF ToggleButton and DelegateCommand

Is there a way to determine if a ToggleButton is Checked/Unchecked via DelegateCommands? TIA, mike XAML code below. I'm using ItemsControl and binding to a collection. I'm basically wanting a way ...
4
votes
2answers
8k views

WPF CommandParameter Binding Problem

I'm having some trouble understanding how command parameter binding works. When I create an instance of the widget class before the call to InitializeComponent it seems to work fine. Modifications ...
3
votes
1answer
83 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
159 views

How do you prevent the VS Shell from getting priority on key/command bindings in a VSPackage ToolWindow?

I have wpf a user control that accepts input gestures to perform various commands. In the example image below, the user can press Ctrl+N to execute the New command to create a new item in the ...
3
votes
1answer
345 views

Command Binding not working when the host control is added programatically in wpf

This is weird. I have a UserControl (MyControl) with a button inside. I have added a command to this button whose command target is another user control which is again added to the same window. When ...
3
votes
1answer
244 views

CommandBinding question. How to enable command button

My code is here>> public class Player:INotifyPropertyChanging { string addressBar; public string Url { get { return addressBar; } ...
3
votes
1answer
621 views

WPF Two Commands handlers, One Command

Im deriving from a third party control. It is implementing ApplicationCommands.SelectAll. However the behaviour i want is slightly different. there is no virtual method i can override, and when i ...
3
votes
2answers
498 views

How can a CanExecute of a commandBinding fire once the element has been removed from the visual tree?

I have a related question here where i have a user control with a command binding. The user control has being removed from the visual tree, yet the canExecute is still firing. My understanding of the ...
3
votes
2answers
204 views

CommandBinding Ctrl + Spacebar

I handle commands inside a RoutedCommand class that implements RoutedUICommand. This would help me to block or override a command by checking their CanExecute and Execute if needed. I can override ...
3
votes
1answer
2k views

Control does not refresh after CanExecute-Result does change

in my window I have buttons for load and save methods. I use CommandBinding and the save-button has a CanExecute property to keep the user from saving the data before it is loaded. The ...
2
votes
1answer
146 views

Multiple parameters with Command binding

I have a textblock with command binding and using Prism library. this is the XAML parth: <TextBlock Margin="0,10,0,0">SocialSecurityNumer:</TextBlock> <TextBox Name="SSNText" ...
2
votes
1answer
102 views

Is there a difference between adding CommandBindings to a control vs using RegisterClassCommandBinding?

Previously I had been using this.CommandBindings.Add( new CommandBinding(ApplicationCommands.Copy, this.cmdCopy_Executed, this.cmdCopy_CanExecute)) where cmdCopy_Executed is a non-static ...
2
votes
1answer
261 views

Execute command does not fire in resource dictionary code behind

I have created resource dictionary and code behind file for it. In XAML I have defined command binding and added Executed handler: <Button Grid.Row="2" Width="100" > <CommandBinding ...
2
votes
1answer
379 views

WPF Command bindings - how can I get to event handlers

Hi Is there any way to choose from where XAML should use command bindings event handlers? I added copule of command binding to my cusotm control, however functions which are resonsible for execute and ...
2
votes
3answers
830 views

How to fire a Command when a window is loaded in wpf

Is it possible to fire a command to notify the window is loaded. Also, I'm not using any MVVM frameworks (Frameworks in the sense, Caliburn, Onxy, MVVM Toolkit etc.,)
2
votes
1answer
52 views

When will the CanExcute event be raised by the CommandSource

When will the CanExecute event be ideally raised by the control that realizes the ICommandSource interface?? I tried to add a breakpoint to the handler to check when it is getting raised and it seems ...
2
votes
2answers
810 views

Can I have multiple CommandBindings for the same Command on the same control?

I have a UserControl that adds a CommandBinding to it's CommandBindings collection to handle a specific Command. Later I use this control in a window and want to add another binding to that same ...
2
votes
3answers
955 views

Keybinding in WPF

I'm new to WPF and in an application i'm building I'd like to show the main menu when the alt key is pressed just like windows explorer in vista and windows 7. I've tried using a keybinding with just ...
2
votes
1answer
500 views

MVVM Multiple Command Handlers

My Application layer uses DialogPresenters to show some ViewModels in various dialogs (modal, splash screen, etc..). public DataImportDialogPresenter(DataImportViewModel viewModel, IDialogView ...
2
votes
1answer
674 views

Command Binding Memory Leak in WPF

When i create a user control that has a CommandBinding to a RoutedUICommand im worried that i get memory leaks. scenario: Have a RoutedUICommand as a static in c class where i store my commands ...
2
votes
2answers
2k views

MVVM Command Binding

I'm trying to learn the MVVM pattern. The main problem I'm having is learning where I should be declaring, creating and binding command objects. 2 examples: I have a main form that acts like a ...
2
votes
2answers
2k views

Help binding command parameter to relative source

I have a ListBox that I have added a ContextMenu to. I want one of the items in the ContextMenu to be bound to a command and I want the parameter passed to that command to be the currently selected ...
2
votes
1answer
790 views

Debugging CommandBinding's CanExecute

I have a user control with a Button bound to the NavigationCommands.RefreshCommand. The handler for the command is in the parent control. The handler's CanExecute looks like this: e.CanExecute = ...
2
votes
2answers
3k views

Application Level shortcut keys in WPF

In WPF application I am currently trying to bind a Command to launch a calculator Tool form any where in the application using shortcut keys, I have created a command but not getting how to map ...
2
votes
1answer
497 views

Setting Command Bindings via XAML on PageFunction forms

If you are creating a WPF window or a WPF page, you can bind commands to functions within the XAML. <Page x:Class="WpfPageApplication.Page1" ...
1
vote
1answer
29 views

Stop CommandBindings being serialised in UserControl

I have a user control that programmatically sets up its command bindings and content. I also serialise this control to XAML. I do not want the content or bindings to be serialised since I set these ...
1
vote
0answers
104 views

Can I Raise CanExecute on MediaCommands without using InvalidateRequerySuggested()?

I have some custom CommandBindings that determine the CanExecute status of various MediaCommands (Play, Pause, etc). I'd like to trigger the CanExecute handler to be called at certain points. However, ...
1
vote
1answer
357 views

WPF ComamndBinding Help on MenuItem

New to WPF...was reading this WPF Routed Command with Bindings per-Tab and am close to getting it working. The MenuItem is disabled until my RuleTab (tabitem) is selected but rather than pop my Find ...
1
vote
2answers
447 views

WPF Application Command Bindings doesn't work

Hi I have a strange problem with CommandBindings in WPF. I add CommandBindings in constructor of object. The command bindings looks like that CommandBindings.Add(new ...
1
vote
1answer
528 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
1answer
157 views

How to force a RibbonButton to be alway enabled?

I have a Microsoft Ribbonbar inside a Window, and every RibbonButton is associated to a specific command like this: <ribbon:Ribbon x:Key="MyToolbar" Name="MyToolbar" > ...
1
vote
3answers
149 views

How to use the text of a routed command as button content

I have a button on a view that is bound via a RoutedUICommand to a command defined in the ViewModel. The XAML code excerpt from the view: <Button Content="Login" Command="{Binding Login}" /> ...
1
vote
2answers
843 views

WPF: Trouble controlling a button's enabled/disabled state using Command binding and a thread

I have a WPF app that simply contains a Button and a Textbox to display some output. When the user clicks the Button, a thread starts which disables the Button, prints stuff to the output Textbox, ...
1
vote
3answers
738 views

WPF Routed Command with Bindings per-Tab

I intended to disable and enable the Buttons outside the TabControl, just like those inside the TabItem when the current tab is changed. But the CommandBindings of the TabItem do not seem to impact ...
1
vote
1answer
124 views

MVVM - In a list of objects, each containing a command, how can I get the appropriate command to fire?

Maybe I'm going about this the wrong way but in my view model I have a list of objects (CGCAppSwitchboardItem) that each contain a DelegateCommand property. My intention here is that each item ...
1
vote
0answers
218 views

CommandBinding broken in inner Custom Control when nesting two Custom Controls of the same type

I've done a Custom Control in form of a GroupBox but with an extra header which purpose is to hold a button or a stackpanel with buttons at the other side. I've added the a Dependency Property to ...
1
vote
1answer
488 views

Using a WPF controls own properties in Command Binding

I have a ToggleButton. I'm using a command binding, and I want to pass the value of its IsChecked property as a parameter. How can I do this without naming the ToggleButton and using its name to ...
1
vote
1answer
867 views

Modifying UI from commands - using command binding in WPF

In my WPF application I have a TextBox and a Button. The button has a command binding to a command that will do something with the text. <TextBox x:Name="_textBox"></TextBox> <Button ...
1
vote
1answer
1k views

WPF MVVM: ICommand Binding to controls

I've totally lost in the command binding that is used in MVVM. How should I bind my object to the window and/or its command to the control to get method called on the Button Click? Here is a ...
1
vote
1answer
702 views

Command Binding in UserControl used as ListBox.ItemTemplate

I have a Listbox with a UserControl as the DataTemplate. This UserControl has a Button to remove that item from the list. <ListBox x:Name="FileList" ItemsSource="{Binding Files}" > ...
1
vote
1answer
749 views

Command Binding to Usercontrol Drag/Drop

How can I create a UI that responds to Drag/Drop events of a usercontrol by usinng the Command pattern in WPF?
1
vote
2answers
629 views

Sending data from view to viewmodel with command binding

Question: How do send data to a view model when using command binding? So that, for example, when i click a button, it sends the "currently selected index" of a list so that it can perform an ...
1
vote
2answers
406 views

How can I write a test for a WPF Command binding?

I have a "commands" class: public static class MyCommands { private static ICommand exitCommand = new RoutedCommand(); public static ICommand ExitCommand { get { return exitCommand; } } } ...
1
vote
1answer
208 views

Disabling controls based on WPF command/command bindings

Using commands is handy because WPF automatically disables the source of the command (typically a button) when the command can't be executed. Evidently, this feature is not available to controls that ...

1 2