Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
5answers
3k views

Is Josh Smith's implementation of the RelayCommand flawed?

Consider the reference article, specifically the example implementation of a RelayCommand (In Figure 3). (No need to read through the entire article for this question.) In general, I think the ...
14
votes
2answers
6k views

WPF ICommand vs RoutedCommand

Let's have a button Command property bound to a custom command. When should I implement ICommand and when derive from RoutedCommand? I see that RoutedCommand implements ICommand. In which case could ...
11
votes
3answers
465 views

Translation of C# ActionCommand:ICommand into VB.net

I found a C# class ActionCommand, that implements ICommand and bases on delegates for Execute and CanExecute. Looks perfect for me so far. public class ActionCommand : ICommand { private ...
10
votes
4answers
4k views

CommandManager.InvalidateRequerySuggested() isn't fast enough. What can I do?

Short Version Calls to CommandManager.InvalidateRequerySuggested() take far longer to take effect than I would like (1-2 second delay before UI controls become disabled). Long Version I have a ...
7
votes
4answers
253 views

What is the real advantage of keeping code out of the XAML code behind?

There is a lot of effort in the Silverlight community to keep a XAML's code behind file as free of code as possible. What is the real motivation behind this? For example, what is the advantage of ...
5
votes
5answers
1k views

How to close a ChildWindow with Cancel button using MVVM Light Toolkit

I'm new to MVVM and trying to figure out how to close a ChildWindow with the traditional Cancel button using MVVM Light Toolkit. In my ChildWindow (StoreDetail.xaml), I have : <Button ...
5
votes
2answers
1k views

C#/WPF: KeyBinding not triggering Command

I have declared <InputBindings> <UserControl.InputBindings> <KeyBinding Key="C" Modifiers="Ctrl" Command="{Binding CopyImageCommand}" /> <KeyBinding Key="V" ...
5
votes
3answers
3k views

WPF ViewModel Commands CanExecute issue

I'm having some difficulty with Context Menu commands on my View Model. I'm implementing the ICommand interface for each command within the View Model, then creating a ContextMenu within the ...
5
votes
2answers
6k views

MVVM (ICommand) in Silverlight

Please, don't judge strictly if this question was discussed previously or indirectly answered in huge nearby prism and mvvm blogs. In WPF implementation of RelayCommand or DelegateCommand classes ...
4
votes
3answers
133 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 ...
4
votes
4answers
714 views

Command binding in multiwindow WPF app

My application can have multiple designer windows. Each window constitutes of several user controls which communicates dynamically with the help of RelayCommands. I created the following class as the ...
3
votes
1answer
61 views

Pass command parameter from the xaml

I try to do something like this: <DataGrid Name="myGrid" ItemSource="{Binding Path=MyCollection}"> <DataGrid.ContextMenu> <ContextMenu> <MenuItem ...
3
votes
2answers
249 views

WPF: Command for TextBox which fires up when we hit Enter Key on It?

As we all know it is very pretty-nice to Bind Buttons in WPF app with the Command's in our VIEWMODEL class. But now suppose i say i have a TextBox and i need to bound the TextBox with command which ...
3
votes
2answers
282 views

What is the actual task of CanExecuteChanged and CommandManager.RequerySuggested?

I got the following code from Josh Smith's MVVM tutorial. Can anyone provide a quick explanation of what this code actually does? public event EventHandler CanExecuteChanged { add { ...
3
votes
2answers
1k views

How to bind a Command to double-click on a row in DataGrid

I have developed a WPF UserControl that is intended to be used as a pick list as follows: A DataGrid bound to a CollectionView of entities (e.g. of Employees) A TextBox above the DataGrid that can ...
3
votes
1answer
1k views

WPF MVVM Commands: Multiple Command Parameters

Perhaps my problem is more architectural than functional, but I am trying to bind a TextBox to a command, and in that command, i'd like to pass multiple parameters (i.e. a custom object). Not sure how ...
3
votes
2answers
889 views

WPF and MVVM. Binding Events

I'm developing a WPF application with the MVVM pattern, RelayCommand, etc. I read a lot on this question but I am not clear as to: All I want to do is move a shape, like an ellipse, for example, and ...
3
votes
2answers
855 views

WPF/MVVM: Disable a Button`s state when the ViewModel behind the UserControl is not yet Initialized?

I have a DocumentListView.Xaml with a ListBox and 3 Buttons. Behind that UserControl sits a DocumentListViewModel with 3 Buttons and their Command Property bound to 3 RelayCommands. I have 3 ...
3
votes
1answer
438 views

WPF ContextMenu Dictionary<Key, List<Value>> databinding

Assume the following class definitions. public enum ContentType { Playlist, Audio, Video, Picture } public interface IDataProvider { string Name { get; ...
3
votes
2answers
105 views

MVC (not mvvm) for WPF?

I do not like having Controller-related code (understand ICommand stuff) in my ViewModel in WPF. Is there a framework to separate it and getting back to good old MVC for WPF? I would like to get : ...
3
votes
4answers
3k views

WPF: TreeViewItem bound to an ICommand

I am busy creating my first MVVM application in WPF. Basically the problem I am having is that I have a TreeView (System.Windows.Controls.TreeView) which I have placed on my WPF Window, I have ...
3
votes
3answers
6k views

WPF ICommand MVVM implementation

So in this particular MVVM implementation I'm doing, I need several commands. I really got tired of implementing the ICommand classes one by one, so I came up with a solution, but I don't know how ...
2
votes
3answers
67 views

Java: Wait for function for up n seconds, if no complete re-try

Background (can skip to question below...) Currently working with a lego Mindstorm robot and the icommand API (http://lejos.sourceforge.net/p_technologies/nxt/icommand/api/index.html). Having some ...
2
votes
2answers
75 views

Accessing ICommands from MainWindow : Josh Smith's Article

I am following Josh Smith's Design explaining WPF + MVVM. I almost have the same requirement as his demo application. I have to assign the Save command from his CustomerViewModel class to a Toolbar ...
2
votes
1answer
99 views

Can I call a command inside a command?

I have a closecommand defined inside my viewmodel for my dialog window. I have another command defined inside that viewmodel. Now I have that command binded to a control in my view. After ...
2
votes
2answers
313 views

CanExecuteChanged event of ICommand

Icommand contains two methods and one event. What the two methods do is clear, but I can’t understand what the event does that is provided in ICommand. When is the CanExecuteChanged event raised? ...
2
votes
1answer
291 views

Why does my Command.CanExecute always return false in unit test?

My Paste command seems to work during normal execution, but in unit test the CanExecute method always returns false. Code: public class ViewModel { public CommandBindingCollection ...
2
votes
1answer
175 views

Simple WPF MVVM Commanding Issue - What's Wrong With This Code?

I'm trying to set up a command on a button in my UI using MVVM. The command doesn't execute when I click the button, though. The code is based off of Jason Dolinger's example (link in 3rd paragraph). ...
2
votes
1answer
691 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 ...
2
votes
1answer
146 views

Is there a way to desaturate an Image on a Button thats disabled?

Is there a way I can desaturate images in Buttons that are disabled? eg. ICommand.CanExecute = false? or do I need to use separate images + Style/Triggers
2
votes
2answers
721 views

ICommand.CanExecute being passed null even though CommandParameter is set

I have a tricky problem where I am binding a ContextMenu to a set of ICommand-derived objects, and setting the Command and CommandParameter properties on each MenuItem via a style: <ContextMenu ...
2
votes
1answer
650 views

Why can't I bind my Silverlight Button Click to a Prism DelegateCommand

I have a simple test app in Silverlight 3 and Prism where I'm just trying to bind a button Click to a simple command I have created on a view model. This is a test app just to get commanding working. ...
1
vote
1answer
63 views

Using ICommand and InputBindings consistently in DataGrid

I'm trying to create a DataGrid having the following features: Readonly Datagrid, but provide editing capabilities through double click and separate edit form (double click on specific row) ...
1
vote
1answer
65 views

How does WPF determine when to Invalidate using the CommandManager (CommandManager.InvalidateRequerySuggested)?

I've been using the RelayCommand a bit here and there, and it got me to wonder and want to know... when exactly does the CommandManager.InvalidateRequerySuggested() get called by WPF? My guess is ...
1
vote
1answer
62 views

WPF UserControl and ICommand

I have created a UserControl which has a button inside and also a style for the button. The style sets the button background upon a mouse over trigger. Now i've added an dependency property of type ...
1
vote
3answers
65 views

Create a new ICommand object in the ViewModel

Both ICommand objects are bound to a ViewModel. The first approach seems to be used often. But the second one saves some lines of code but would it not create everytime a new ICommand object when ...
1
vote
1answer
92 views

Are there any performance implications with CanExecuteCommand?

What are the performance implications of using the CanExecuteCommand of the ICommand object. Is the method executed over and over again? I need to iterate through a collection of about 200 objects ...
1
vote
3answers
97 views

How to implement Command with Tooltip in MVVM?

Most MVVM frameworks implement basic Command pattern (for example DelegateCommand in PRISM), that uses Execute and CanExecute methods from ViewModel. Hovewer, I often need to add a tooltip to the ...
1
vote
2answers
189 views

WPF MVVM - Unit Testing a command - Private vs Public methods?

Basically, If I use MVVM and expose public ICommands, should my delegates be public or private?
1
vote
3answers
258 views

Silverlight - how to call a command based upon a property wihtin the view

I have been banging my head on this one for hours and I am hoping someone can point me in the correct direction. I have a button within my view which has a click event and a command attached. The ...
1
vote
2answers
712 views

Silverlight call command from button within listbox item template

I have seen this question asked a few times but I have not seen been able to find a complete answer to my scenario. Within my project I have a user control that I have created as a listbox item. ...
1
vote
0answers
216 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
129 views

MVVM: Should I check my “CanExecute” method from within my Execute methods?

I understand the use of CanExecute() and Execute(), but I'm wondering about the following scenario: public class MyViewModel : NotificationObject { public MyViewModel() { FooCommand = ...
1
vote
2answers
247 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 ...
1
vote
3answers
2k views

binding a command inside a listbox item to a property on the viewmodel parent

I've been working on this for about an hour and looked at all related SO questions. My problem is very simple: I have HomePageVieModel: HomePageVieModel +IList<NewsItem> AllNewsItems ...
1
vote
1answer
868 views

Silverlight Multiple Command Binding in MVVM

I am starting to build Silverlight application using MVVM. I have button on a XAML page to enable saving of data on its click I have written following code. <Button Content="Save" Grid.Column="2" ...
1
vote
2answers
1k views

Silverlight MVVM: where did my (object sender, RoutedEventArgs e) go?

I am using commanding in my viewmodel to handle events. like for example I am handling a button click event like this: XAML <i:Interaction.Triggers> ...
1
vote
2answers
910 views

ICOmmand - canexecute can not disable Button with image content

I have a button control in my wpf-mvvm application. I use an ICommand property (defined in viewmodel) to bind the button click event to viewmodel. I have -> execute and canexecute parameters for my ...
1
vote
1answer
152 views

Is it possible to bind CommitEditCommand on a Datagrid to an ICommand in the view model?

I'm trying to do something similar to; <Button Command="{Binding DeleteCommand}" /> Where DeleteCommand is an ICommand exposed by the view model. I thought i could do something similar to ...
1
vote
1answer
173 views

Using the “Normal” ICommand

I used RelayCommand of MVVM Foundation, now, when I try to use the "normal" ICommand, I don't really get how to use it, particularly "binding" it to variables used my my main class. I am just wanting ...

1 2