Interface for MVVM scenarios in Silverlight and WPF to bind commands from models to controls (Buttons).

learn more… | top users | synonyms

0
votes
1answer
29 views

Binding to ICommand with MVVM

I'm totally new with MVVM and its stuff. Could you help me to correctly bind the WPF button to ICommand. I'm binding the button: <Button Command="{Binding OpenWindow}" > In the ViewModel: ...
0
votes
1answer
39 views

Context Menu commands to dynamically create UI controls using MVVM

Hopefully this question isn't too general, but I have just started using WPF and I'm banging my head against this. I am developing an application that uses dynamically created controls. However ...
0
votes
0answers
22 views

Commands to interact with controls and properties of Main Window instance

I would like to create commands in the Main Window instance, which would interact with controls and properties of the Main Window instance. But I got the following error: Cannot access a ...
0
votes
1answer
39 views

Control Databinding to View not ViewModel in MVVM scenario

I've been working with the MVVM model for a week or so now and I think I have a handle on what should go where now. Note the "think" in that. I have a single ViewModel that my view (MainWindow) binds ...
0
votes
0answers
51 views

WPF Menu Item not Firing

All, firstly I have checked several questions on this problem: Command not working for menu item MVVM binding command to contextmenu item et al. These have not helped me. I have the following ...
1
vote
3answers
128 views

Commands using Action<> and Func<>

I am working through MVVM Survival Guide for Enterprise Architectures in Silverlight and WPF and have hit a snag in the Command section. Specifically, it creates a command based on an ...
2
votes
3answers
53 views

When implementing ICommand in MVVM I'm missing something

I'm very new to C# and WPF in general, having come from a LAMP web application background. I've tried following a couple tutorials on the subject but they have left me stumped. ...
1
vote
4answers
68 views

Utilizing ICommand in WPF — Command returning null

I am working on a sample ViewModel in WPF and I am currently binding 3 textboxes in the View to Id, FirstName, and LastName. I then have a button click event in the xaml.cs file that executes a ...
0
votes
2answers
52 views

Is there anyway to plumb a command not via the viewmodel in wpf?

This question is simple but I fail to accurately get a hold of how to do it. I decided to use WPF, but I don't want to implement some of MVVM pattern in the classic way. In my project I decided to ...
0
votes
2answers
39 views

CanExecute breakpoint doesn't allow me to use the application

I'm currently toying a little with MVVM pattern and trying commands. I find the default way (every Command class needs to implement from ICommand interface) quite boring, so I've created a new base ...
0
votes
0answers
21 views

CommandBinding won't fireing Command with UserControl

I have done searching around with no success. My UserContorl (UC) has no xaml (only UserControl default defenition in xaml). In the codebehind there is a dependency properties and logic stuff. I ...
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
44 views

Is CanExecuteChanged a event property of ICommand

Is CanExecuteChanged a event property of ICommand? If it's a property why does it have a add and remove instead of get , set? If , it's not a property , then what is it? public event EventHandler ...
0
votes
2answers
106 views

How to implement commands on a user control without resorting to code-behind?

I just managed to get my WPF custom message window to work as I intended it... almost: MessageWindow window; public void MessageBox() { var messageViewModel = new ...
1
vote
1answer
101 views

C# CommandManager combined with undo/Redo pattern

I was currently looking to combine the Undo/Redo (based on this article) with the Command-Pattern using ICommand. Reading about the idea of CanExecute, and CanExecuteChanged, I found the ...
0
votes
1answer
169 views

WPF: Button can't find command (multiple viewModels)

This problem might be solved easily but i'm having some serious issues with Binding a command from a viewModel to the xaml view file. As you might have guessed our application is based on the MVVM ...
0
votes
0answers
32 views

PRISM + MEF + ICommand: ICommand is not working

I have not found the issue why my ICommand OpenInstituteCommand is not working. Here my code: ViewModel: namespace MeineEintraege_Navigation.VM { ...
0
votes
1answer
42 views

Singletons and ICommand

Is there some special rules I have to be careful about when binding my view to the commands defined in my singleton ViewModel, opposed to normal (non-singleton) ViewModels? All my ViewModels except ...
0
votes
1answer
26 views

Is it possible to find the button that was pressed for a specific command?

If I have something like this: <Button Command="{Binding TestCommand}">Test</Button> <Button Command="{Binding TestCommand}">another Test</Button> TestCommand is a command ...
0
votes
0answers
28 views

Does WPF still leak on Custom ICommand implementations?

Before .Net 4.5, WPF controls used to leak on custom ICommand implementations that did not use a weak event pattern because they did not unsubscribe from the CanExecuteChanged event of the interface. ...
2
votes
3answers
52 views

Why the ViewModel doesn't implement ICommand in MVVM

I'm trying to understand MVVM for WPF applications In the example below, we use a delegate that inherits from ICommand, then in our ViewModel, we instantiate the delegate and provide the appropriate ...
0
votes
1answer
79 views

Ways to attached an ICommand to a control in XAML

I'm very new to XAML. To utilize MVC architecture and the Command Pattern while taking advantage of XAML, I have started binding static ICommands to Buttons. I'm working on a fairly large project ...
2
votes
2answers
278 views

How To send Command Parameter In Mvvm Silverlight 5

I Have Implemented Icommand in my mvvm architecture as SimpleCommand.cs public class SimpleCommand<T1, T2> : ICommand { private Func<T1, bool> canExecuteMethod; private ...
2
votes
2answers
249 views

How to get current element in WPF datagrid and how to do something with it?

Some time ago I began to study the MVVM pattern with this tutorial. I use MicroMvvm. I have a WPF project with EntityFramework model. I wrote ViewModels and XAML views. I want to display my data in a ...
0
votes
2answers
42 views

Does ICommand always requires an object as a parameter?

When I implement the ICommand interface, the following methods are created #region ICommand Members public bool CanExecute(object parameter) { } public event EventHandler ...
2
votes
2answers
148 views

wpf command parameter from other object

I'm wondering how to mark up the XAML for the following. I have a view model with an object based on ICommand. I have a form with a textbox and a button. The button is hooked to the ICommand object ...
0
votes
1answer
91 views

ICommand with navigation

I'm working on a WinRT app and I'm trying to use a command for a button. public class addCommand : ICommand { private async Task AddNewVehicle() { vvm VM = new vvm(); await ...
0
votes
1answer
86 views

Cell Template with Hyperlink usage in MVVM pattern

I'm tring to insert an hyperlink within a DataGrid and find a method in order to implement the RequestNavigate behaviour using the MVVM pattern. I've tried a lot of solutions up until now, but none ...
0
votes
1answer
134 views

Command is not acssess bind to the ViewModel - wpf

I have a Wpf DataGrid, by clicking on the delete key on the keyboard I want to call a function in my ViewModel, the DataGrid bind to a list from ViewModel. The code looks like this: The datagrid: ...
0
votes
2answers
221 views

Telerik DelegateCommand Usage in WPF

I'm a little stuck on the proper usage of Telerik.Windows.Controls DelegateCommand I have the below set up, which compiles, however I am more concerned with, whether, I am using it correctly. I have ...
1
vote
1answer
141 views

Bind to Parent.Parent from DataGridTextColumn.Header

hi normally it should work automatically but it doesn't XAML: <DataGrid AutoGenerateColumns="False" Width="350" IsReadOnly="True" ItemsSource="{Binding ...
2
votes
0answers
241 views

After installing .NET 4.5, previous Unit-Test project fails to build

I have a .NET 4.0 WPF solution that includes a Unit Test project which tests the different commands used in the viewmodels. Everything was fine. Then I installed .NET framework 4.5 and then VS2012, ...
0
votes
0answers
54 views

How to continue routing with DelegateCommand in WPF

The KeyBindings in my application are stealing key down messages when I try to use the textbox. So for example: <ribbon:RibbonWindow.InputBindings> <KeyBinding Command="{Binding ...
1
vote
2answers
96 views

How to use mulitple ViewModels in one MainWindow

I have a C# project in WPF. I've worked with MVC before and I am now trying to get around with MVVM in combination with XAML. I have multiple models, I have one GUI Window with Tabitems, and I have ...
3
votes
1answer
147 views

WPF ICommand.Execute on UI, XP

I have a UserControl within a Window on my WPF application. <StackPanel Orientation="Horizontal" Margin="5"> <Button Command="{Binding AddFileCommand}" /> ...
2
votes
3answers
391 views

Toggle button command not executed

The problem is this. Let's say I have 3 toggle buttons and I want just one being checked at the time using Command. When one button is checked others should be disabled. (I don't want to use radio ...
5
votes
5answers
642 views

How to Bind a Command in WPF

Sometimes we used complex ways so many times, we forgot the simplest ways to do the task. I know how to do command binding, but i always use same approach. Create a class that implements ICommand ...
1
vote
1answer
564 views

How can I pass the event argument to a command using triggers?

So I have a simple setup, an autocompletebox with its Populating event that I want to bind to a command. I use clr-namespace:System.Windows.Interactivity;assembly=System.Windows.Interactivity (is ...
1
vote
1answer
82 views

How to change a three steps operation into a command in WPF?

I'm learning MVVM design pattern so I'm trying to change some operation into Command. Here's an example, MainWindow has a Canvas as the container, and the user can draw rectangle through dragging. So ...
0
votes
2answers
263 views

Re-evaluating CanExecute on property change

I am trying to implement ICommandSource on a custom control (similar to a button). Currently the implementation is mostly like it is displayed on the msdn page for ICommandSource and as it shows in ...
0
votes
0answers
198 views

Silverlight Command binding issue for controls

I am creating command to useing in silverlight xaml bindings. But the command are not working outside the Controls. I am usinf ESRI silverlight API. API has a control named map. public sealed class ...
1
vote
1answer
109 views

Missing namespace or type for ICommand

Microsoft Visual Studio can't compile my code because the namespace for ICommand is missing. But it is System.Windows.Input, isn't it? using System.Windows.Input; internal class CommandCreate : ...
3
votes
1answer
94 views

Semantically, should Commands and Converters be closer to Views or ViewModels?

I'm wondering if in MVVM I should design Converters and Commands be closer to Views or ViewModels. It's a gray zone for me as they are two types of glue objects bridging the gap between components. ...
0
votes
2answers
628 views

Is there a CommandParameter in XAML/WinRT?

Can a CommandParameter be passed to a Command in WinRT? How?
0
votes
0answers
59 views

User Control - Button Template and Command Binding

I have created a UserControl with a button element and its ControlTemplate in it. Also a DependencyProperty ExecuteCommand of type ICommand exists in which the button command is bound to it. The ...
0
votes
1answer
130 views

Using SQL command in WPF with MVVM

I am completely new to WPF and MVVM. So my question might look amateur, please bare with me, all that i want to know is how to call a particular method on a button click event through binding the data ...
0
votes
2answers
1k views

Bind a button to a command (Windows Phone 7.5)

I'm working on my windows-phone app wich uses some simple data binding. I've allready created a app wich was based on the MvvM programming method.The app i'm curently working on also works by MvvM ...
1
vote
4answers
204 views

What is the proper way to declare methods to be implemented by child classes?

I've created a parent class that has common methods, but there are methods that I want to be implemented by child classes. i.e. Click Execution methods. What is the proper way to implement this? ...
1
vote
2answers
325 views

Button not enabled even after providing CommandParameter in WPF

I created a button whose commandparameter is set and command using a class that implements ICommand interface. But my button is disabled. Why is that? I got this code from here: ICommand is like a ...
3
votes
1answer
597 views

CS1684 Reference to Type System.Windows.Input.ICommand claims it is defined in 'xxx' but could not be found

I'm attempting to start using VS 2012 instead of VS 2010, but after installing VS 2012 and .Net 4.5. I'm getting code analysis errors in VS 2010 saying The following error was encountered while ...

1 2 3 4