Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
5answers
4k views

Simplifying RelayCommand/DelegateCommand in WPF MVVM ViewModels

If you're doing MVVM and using commands, you'll often see ICommand properties on the ViewModel that are backed by private RelayCommand or DelegateCommand fields, like this example from the original ...
4
votes
3answers
293 views

Why are RelayCommand or DelegateCommand not part of WPF? [closed]

The Model-View-ViewModel (MVVM) approach seem to be the front-runner pattern in WPF UI development. Almost every article I read implies that it is the best-practice. Usage of RelayCommand or ...
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 ...
3
votes
3answers
50 views

jQuery: live() and delegate()

I'm binding a click event to a div element, which is created after clicking on a button. I'm using .live() and this is working. I've heard, that I should not use .live, but .delegate(). So I've tried ...
3
votes
4answers
356 views

When does the ui detach from commands?

I'm really scratching my head with this one. I have a mainwindow which opens a dialog. After the dialog closes, the CanExecute method on commands bound in the dialog are still executing. This is ...
3
votes
3answers
1k views

Memory leak in WPF app due to DelegateCommand

I just finished desktop apps written in WPF and c# using MVVM pattern. In this app I used Delegate Command implementation to wrap the ICommands properties exposed in my ModelView. The problem is these ...
3
votes
5answers
6k views

How do I pass the information from View to ViewModel with DelegateCommand?

In my View, I have a button. When the user clicks this button, I want to have the ViewModel save the context of the TextBlock in the database. <StackPanel HorizontalAlignment="Left" ...
2
votes
2answers
196 views

Why use a RelayCommand or DelegateCommand instead of just implementing ICommand?

I'm just learning about MVVM in WPF, I'm completely new both to WPF as to MVVM (I understand how it works, but have never used it...) Every single tutorial/article I find on the web, it uses either ...
2
votes
3answers
140 views

Invalid data in TextBox — How to disable my command buttons?

Basically I have the following situation: <TextBox Text="{Binding MyIntValue}" /> <Button prism:Click.Command={Binding MyCommand}" /> public Boolean CanDoCommand() { return ...
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
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. ...
2
votes
1answer
798 views

DelegateCommand vs RoutedCommand and gestures - WPF

is there anyway for DelegateCommand's to support gestures when building a composite WPF app? I'm trying to create a command used by a MenuItem and also a Button, which can be accessed through a ...
2
votes
3answers
2k views

WPF CommandParameter binding and canExecute

I have a template for treeView item: <HierarchicalDataTemplate x:Key="RatesTemplate"> <StackPanel Orientation="Horizontal"> <TextBlock Text="{Binding ...
2
votes
1answer
2k views

Is a DelegateCommand the same as an “Attached Behavior”?

I have been using the DelegateCommand found in the MVVM Visual Studio template at CodePlex. This works very nicely for having Views be able to execute commands on their ViewModel. I read somewhere ...
1
vote
1answer
174 views

is there a uipickerview delegate method like scrollviewDidScroll?

I have a customized UIPickerview and I do not want to use a datepicker. I want to implement the feature where when a user scrolls down/up the hours, the AM/PM component switches while the hour is ...
1
vote
1answer
115 views

How to unit test CanExecuteChanged and RaisePropertyChanged

I am trying to practice strict TDD and have run into issue related to DelegateCommands and testing that CanExecute has been called. These are my two test titles: "When I select an item from the ...
1
vote
2answers
413 views

CommandParameter of event trigger using InvokeDelegateCommandAction

I am using the class InvokeDelegateCommandAction from AlexeyZakharov's weblog on the basis of some advice from guys that this is the best way to send back a parameter from a View to a ViewModel from ...
1
vote
0answers
135 views

How is the standard DelegateCommand CanExecuteChanged event fired in Silverlight?

I want to re-trigger the canExecute functionality from a DelegateCommand after some modifications have been made by the user. How do I do this?
1
vote
2answers
225 views

Using .delegate in jQuery

I've got a function that works great on creating the custom tooltips I need for an event calendar. The problem is that when a user clicks to go to the next month on the calendar, a new set of links is ...
1
vote
1answer
226 views

WPF and MVVM problem

if try implemnt my first MVVM in WPF app. I have old app based on winforms and I want use my logic (class) from this project. I have Model, it consist with these classes: public class FriendData { ...
1
vote
3answers
2k views

In which namespace is the DelegateCommand in?

I am trying to work out an example from ".NET Domain Driven Design with C#", which contains a code example where you can see declared some attributes of type DelegateCommand. Now, I've tried googling ...
1
vote
1answer
709 views

Attach commands to TreeView in wpf using prism

How do I use a DelegateCommand in a TreeView to get the Expanded event? Should I be using the DelegateCommand or is there another way? Thanks
1
vote
2answers
65 views

How can I set a breakpoint and have the code stop on a line inside an AttachedCommand?

In my XAML I have this command (which is an AttachedCommand which I got from http://marlongrech.wordpress.com): <TextBlock Text="Edit Test Customer"> ...
0
votes
1answer
30 views

C# to VB.NET Delegate command translation

Could one of you gurus help with a bit of translation? Argument not specified for 'userList' of 'Private Sub OpenUserDetail(userList as Model.UserList)'. It works in the C# version just not sure ...
0
votes
1answer
234 views

Using of RaiseCanExecuteChanged

I make two methodes like this: private void Next(string argument) { Current = Clients[Clients.IndexOf(Current) + 1]; ((DelegateCommand)NextCommand).RaiseCanExecuteChanged(); } private void ...
0
votes
1answer
722 views

How to enable KeyBinding for DelegateCommand in Prism 4?

I would like to enable a KeyBinding for a DelegateCommand in a Prism4 desktop application. For example, in my XAML file I have this: <Grid.InputBindings> <KeyBinding ...
0
votes
2answers
714 views

Can execute question using delegate commands in prism

This seems like a dumb question but I have looked through the docs for prism and searched the internet and can't find an example... Here is the deal. I am using a DelegateCommand in Prism, it is ...
0
votes
1answer
316 views

In WPF/Prism, what happens with a CompositeCommand when a DelegateCommand.RaiseCanExecuteChanged is fired?

Say that I have a CompositeCommand with a lot of DelegateCommands registered. If one of the child DelegateCommands fires up RaiseCanExecuteChanged, this will result in firing the event ...
0
votes
1answer
279 views

How can you unit test a DelegateCommand

I am trying to unit test my ViewModel and my SaveItem(save, CanSave) delegate command. I want to ensure that CanSave is called and returns the correct value given certain conditions. Basically, how ...
0
votes
0answers
422 views

Composite Commands Not Working

I am working on a Composite MVVM application and trying to get Global Binding events happening - Except it is NOT!.. the buttons are disabled by default although the CanRun returns true!! !! I have ...
0
votes
1answer
79 views

wpf mvvm equality

I would like to use an MVVM in a WPF project I'm working on, including the use of RelayCommands (aka DelegateCommands). I'm running into an interesting but frustration problem in implementing equality ...
0
votes
1answer
2k views

Why isn't my command parameter binding correctly?

I'm trying to bind a button command to take the text of a textbox as a parameter when the button is clicked. My Xaml looks like this: <TextBox x:Name="InputBox" Width="250" TabIndex="1" ...
0
votes
2answers
773 views

Button: Binding different DelegateCommands depending on the ClickMode value (Press / Release)

Often found answers here, but now it`s my first time ;) We use the MVVM pattern in conjunction with DelegateCommands. So normally I bind a command to the button like this: <Button ...
0
votes
1answer
914 views

Why does DelegateCommand not work the same for Button and MenuItem?

This code shows that the Delegate Command from the Visual Studio MVVM template works differently when used with MenuItem and Button: with Button, the command method has access to changed ...
-1
votes
1answer
170 views

How to check if a control is resigning first responder or become first responder?

I have a view that a content some NSTextfields and NSComboboxes. I want to do something when one of these controls resign first responder. I already try the delegate method - ...