The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
18 views

Something similar to RoutedCommands, but for MVVM

I have a Command bound to my MainWindow via CommandBinding to the Delete key. I want that, depending on the context (which element is active), the same command would be translated to different ...
0
votes
3answers
31 views

Show dialog box on shift double click

My WPF application has a TextBlock control in it. I want to display an "easter egg" when the user holds down the shift key and right double clicks on it. I've added a RoutedUiCommand to a static ...
1
vote
1answer
34 views

Custom attached command

I have a situation where I want to write custom command for framework element. Which I have done like below: public class UndoRedoManager { private static FrameworkElement ...
0
votes
2answers
32 views

Make command work only in part of a window

I have this xaml <Window x:Class="WpfApplication1.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" ...
2
votes
2answers
371 views

RelayCommand vs EventToCommand

I'm little confused about RelayCommand and EventToCommand in Mvvmlight. It seems that EventToCommand handle the EventTrigger and call a RelayCommand to do job. Such as: ...
2
votes
0answers
75 views

WPF MediaCommands while program is running in background

I have a program where I've implemented some of the .NET Media Commands as Routed Commands in my MainWindow like this: <Window.CommandBindings> <CommandBinding ...
0
votes
2answers
51 views

Why do my commandbindings only work if button is in toolbar?

I have a window with a toolbar which contains some buttons with commands. The Buttons stopped working since i replaced the toolbar with a stackpanel containing the buttons. In my understanding this ...
6
votes
1answer
130 views

Separating views, command presentation (Text, Icon) and command logic (Execute, CanExecute)

If TL;DR: see the last paragraph. Pure WPF "suggests" putting presentation (controls, text, icons) into views and command logic (Execute, CanExecute methods) into code-behind. Besides putting logic ...
1
vote
1answer
204 views

Unable to set CommandBinding inside Datatemplate

The following are two xaml snippets where the sole difference is that one example directly populates the window's visual tree and DataContext while the other contructs the same same window by applying ...
1
vote
2answers
122 views

RoutedCommands that use tunneling instead of bubbling

I have a custom control (MyControl) that exposes a custom command. I want the parent Window to be able to invoke this command, and all MyControls should react to it. I have added the command to ...
0
votes
1answer
206 views

How to execute the commands on remote Host using SSH from a web based application built in Django?

I have to execute some commands on a remote Host, this host will be a "Router". I have never ever done work with RPC calls. Another big problem is that i have to execute these commands from a Django ...
0
votes
1answer
188 views

How to get a RoutedCommand to a new ViewModel?

I have a relatively straightforward hierarchical data master-detail WPF window, developed using MVVM, where the Window points to a ViewModel which exposes as one of its properties the ViewModel for ...
1
vote
0answers
507 views

Loopback in Route table

I and working on a project to create a WAN emulator using FreeBDS in a VMWare guest configured to route traffic between the host operating system and its normal gateway router. I plan to modify the ...
0
votes
1answer
312 views

Do I have to use CommandTarget? I thought any focused element would receive the Command

I'm trying to understand how to use RoutedCommands. I was under the impression that if I don't specify a CommandTarget on the Button, any focused element will receive the command. But for some reason ...
0
votes
1answer
213 views

Programmatically wire event handler of a control in a datatemplate

I have clickable image/rectangle controls throughout my application and prefer to wire them in code: clickableimagecontrol.MouseUp += MouseUp_Handler I am struggling to understand how to do the ...
1
vote
1answer
746 views

WPF prevent event bubbling outside of a control

Let's begin with the element tree. The topmost element is a WPF window which has registered ApplicationCommands.Find command. Some child elements have KeyBinding with the gesture key ENTER pointing at ...
1
vote
0answers
95 views

Is re-use of commands from the WPF command library a bad idea?

WPF provides a library of pre-defined commands (ApplicationCommands.Save, NavigationCommands.NextPage, etc.) that we can create command bindings for in our own application. I know that it is possible ...
3
votes
2answers
134 views

How and where do ICommands fit into the overall WPF MVVM pattern?

I'm trying to learn how to use WPF commands, and how they fit into the MVVM pattern. I understand that some controls, like a button or menu, have a Command property which when set to an instance of an ...
1
vote
1answer
89 views

Commands that act on two controls

Looking through the standard WPF commands, such as copy/paste, they seem to all work using one button and act on a textbox. My question: how do I use commands when I have one button, but I need data ...
0
votes
1answer
125 views

Need work-around for overriding RoutedUICommand.Text property

I have a static Command class like this (but with many more commands): class GuiCommands { static GuiCommands() { addInterface = new ...
1
vote
0answers
250 views

Disabling CommandManager RequerySuggested Event

I want to test my project performance without using CommandManager RequerySuggested. I use the following codes to disable CommandManager from firing RequerySuggested Event. It removes all event ...
1
vote
1answer
95 views

Standalone Command Objects in WPF

Is it possible / practical to implement WPF commands as standalone objects? If so, how is this typically done? Most of the examples I see about commanding typically involve using RoutedCommand, ...
0
votes
2answers
498 views

RoutedCommand with parameter

I'm playing around with RoutedCommand, and I'm having an issue with finding how can I pass a parameter so that my Executed method will have it in e.Parameter ? My RoutedCommand: public static ...
0
votes
1answer
308 views

Best place to put implementation code of custom WPF command (RoutedUICommand) handlers

In WPF, custom commands have event handlers such as command_Executed and command_CanExecute, the best practice is that the implementation logic should not be directly implemented in the code-behind ...
-1
votes
2answers
341 views

Command's CanExecute method is called but not Execute method

I've bound a command to a button on a Ribbon control. The CanExecute method on the button gets called as expected but clicking on the button doesn't cause the Execute method to be called. The ...
0
votes
2answers
2k views

How to bind ApplicationCommands to a ViewModel?

I have successfully used a few custom commands using MVVM-Light, but I want my application to respond to the standard ApplicationCommands, not just at a Window level, but at a detailed item level as ...
0
votes
1answer
244 views

Listening to routed events / commands from a popup

I have a control that dynamically creates a popup. The popup contains controls that fire routed events / commands, which I want to react to in the original control. The original control is set as the ...
0
votes
1answer
351 views

How do you Execute a Silverlight ICommand?

This is such a basic question, but I have to ask. In SL, I have this XAML: <UserControl.Resources> <local:Commands x:Key="MyCommands" /> </UserControl.Resources> <Button ...
0
votes
1answer
94 views

Cache CanExecute (or anything) in WPF?

The Cache object in System.Web is pretty freaking nice. I handle my CommandBinding.CanExecute sort of like this: CommandBindings[0].CanExecute += (s, e) => { e.CanExecute = ...
5
votes
3answers
445 views

Should I check an ICommand's CanExecute method before calling Execute from procedural code?

When using ICommands in XAML, WPF uses the CanExecute method to enable or disable controls associated with the command. But what if I am calling Execute from procedural code? Should I first check ...
0
votes
1answer
238 views

WPF VB.net - Can multiple CommandBindings be executed for the same command?

In WPF I'm trying to use commands to set all the content in multiple textboxes at once. The following code is able to get a command on the toggle button to execute for which ever textbox has scope but ...
2
votes
1answer
276 views

WPF: ApplicationCommands seem to ignore CommandTarget

I have a TextBox and a ListView in my window, and I'd like to move the ListView's selection up and down while the TextBox has focus: However, I don't seem to get my CommandTarget declarations ...
2
votes
1answer
138 views

How is the RoutedCommand.Name property used?

The RoutedCommand class has a Name property that can be set in the contructor. MSDN has this to say about RoutedCommand.Name: This property can be used when referencing a RoutedCommand in XAML. ...
1
vote
1answer
71 views

Issue when using Routed Commands with a Frame

My WPF project has a main window with a number of buttons and a frame. I display a page within the frame, and the buttons above use routed commands in order to call methods present in the page below. ...
2
votes
0answers
203 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, ...
19
votes
2answers
2k views

When to use events over commands in WPF?

Hi i have recently looked into WPF and started learning about Events and Commands. I typically use Commands on Button clicks which causes a method to Run in my "view model". Is it possible to make ...
2
votes
2answers
1k views

WPF - Custom Control + ICommand (How do I Implement this)?

Basically, I have a custom control FooControl. public class FooControl : ItemsControl { //Code } I need to add some event handling, but rather than using a RoutedEvent I'd much more prefer to ...
0
votes
1answer
512 views

using routed events within Silverlight user controls

within my current project file I have a user control that has a storyboard animation applied to the control. When a button is clicked in the page the storyboard starts and basically visually presents ...
0
votes
1answer
391 views

How to set ButtonBaseExtensions.Command DataContext, and not change the buttons' context

I am using mvvm light in a WP7 app. I have a listbox with an itemsource of a collection of objects. The ItemTemplate DataTemplate for the listbox contains a button. The button contains a textblock ...
0
votes
2answers
184 views

How to run methods across pages in Silverlight?

I need to be able to set the visibility of the Border to be visible for 10 seconds. The border resides in MainPage.xaml which is parent to Content.xaml. The trick is that I need to change the ...
0
votes
1answer
543 views

WPF contentcontrol routedevent resource file list for event

so I have a contentcontrol that has a routedevent: public class TestBlind : ContentControl { public static readonly RoutedEvent VisibilityVisibleEvent = ...
0
votes
2answers
245 views

Clear MenuItem, with clear command

hi i'm a "very" beginner in wpf i'm trying to make a menu item "Clear", it should clear the text in the focused text box, actually i could not find a built in command that does the job like ...
1
vote
1answer
59 views

Which things are possible with this set of SSH Shell Commands? [closed]

A certain webhosting package comes with a set of "SSH Chrooted SHELL commands". I wondered what these do and whether its worth the extra cost and time investment for any professional programmer to ...
3
votes
1answer
153 views

Is there any way to alias commands in WPF?

Is there any way to effectively "alias" commands in WPF ? My situation is this : I've created an application that uses ApplicationCommands.Delete in the context of a graphical editor that has a number ...
9
votes
3answers
4k views

Boolean CommandParameter in XAML

I have this code (which works just right): <KeyBinding Key="Enter" Command="{Binding ReturnResultCommand}"> <KeyBinding.CommandParameter> <s:Boolean> ...
5
votes
3answers
5k views

WPF Commands, How to declare Application level commands?

I'm interested in creating commands that are available from anywhere in my WPF application. I'd like them to work in the same way as Cut, Copy, Paste and the other Application level commands, ie: ...
3
votes
1answer
818 views

RoutedCommands Executed and PreviewExecuted events

My problem is that I would like to handle a commands in multiple places. For instance I have my custom UserControl where a Button is bound to some command. I have a command binding in that control but ...
3
votes
1answer
2k views

Command routing for Keyboard shortcuts

Basically I want to create a keyboard shortcut which is valid within the scope of a window, and not just enabled when focus is within the control that binds it. in more detail.... I have a window ...
1
vote
1answer
285 views

WPF application with context sensitive toolbar

I want to design an application much like Visual studio where the toolbars are context sensitive to the workspace area and their are common toolbars which have context sensitive functionality like ...
1
vote
2answers
874 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 2 3