2
votes
3answers
179 views
WPF Built-in Commands
I'm looking for a complete list of built-in WPF Commands.
The best list I've found so far is here, but it does not list all commands.
Some nice-to-have details would be:
Controls/components with …
2
votes
2answers
71 views
Redirection Between View In MVVM
I am using MVVM patern for developing my WPF application. It working fine for unrelated pages, means how to go in another view from one view.
Eg:
I have one list page in which some records are …
2
votes
2answers
355 views
CommandBinding in Window doesn’t catch execution of command from ContextMenu
A quite simple and straightforward example.
I have a window. It has CommandBindings set to catch a RoutedUICommand execution.
<Window
...
>
<Window.CommandBinding>
…
1
vote
2answers
363 views
Passing origin of ContextMenu into WPF Command
Interesting problem related to firing commands from context menu items...
I want to fire a command to insert a row in my control, InsertRowCmd. This command needs to know where to insert the row.
I …
1
vote
1answer
312 views
Specify Command for MenuItem in a DataTemplate
I have a context menu. It's bound to some collection and it has a defined ItemTemplate like this:
<ContextMenu
ItemsSource={Binding ...}
ItemTemplate={StaticResource itemTemplate}
…
1
vote
4answers
532 views
Prevent double-click from double firing a command
Given that you have a control that fires a command:
<Button Command="New"/>
Is there a way to prevent the command from being fired twice if the user double clicks on the command?
EDIT: What …
1
vote
2answers
565 views
WPF - Get Hyperlink command from data?
In WPF, how can I get a reference to the Command that a Hyperlink should invoke from an object property?
I am creating a WPF application, using the MVVM pattern. A list box in the main window dislays …
1
vote
1answer
530 views
Refresh WPF Command
Does anyone know how I can force CanExecute to get called on a custom command (Josh Smith's RelayCommand)?
Typically, CanExecute is called whenever interaction occurs on the UI. If I click something, …
3
votes
1answer
1k views
WPF, UserControl, and Commands? Oh my!
(This question is related to another one, but different enough that I think it warrants placement here.)
Here's a (heavily snipped) Window:
<Window x:Class="Gmd.TimeTracker2.TimeTrackerMainForm"
…
