Tagged Questions
0
votes
0answers
34 views
MVVM WPF Command not firing
I have MVVM WPF application. I create menu via a separate service and set to load time.
My shell view which contains the menu is as follows,
<ItemsControl x:Name="MainToolbar" ...
0
votes
1answer
30 views
WPF: call Command in MVVM after view is rendered?
I am designing a WPF app and using MVVM pattern. Let's say I have one view called View1, and it's DataContext is set to ViewModel1 in it's contractor. The VM has one Commandcalled RefreshCommand whose ...
0
votes
1answer
34 views
Mvvm Windows Phone 8 command Error: BindingExpression path error: 'SalvarCommand'
My commands are pointing to the Model class and not for ModelView
System.Windows.Data Error: BindingExpression path error: 'SalvarCommand' property not found on 'SuperListaW8.Model.ListaItem' ...
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
1answer
31 views
Command binding in code behind
I am trying to bind a command in code behind of a custom control. The control itself doesn't have a ViewModel but the page which it is going to be a part of has one. That view model has multiple ...
4
votes
2answers
57 views
Commands and MVVM principles - RelayCommands
I'm new at C#, WPF and MVVM pattern. Sorry for this quite long post, I am trying to set all my points of understanding (or non understanding).
After studying a lot of texts on the commanding ...
0
votes
1answer
31 views
Single Command to call different commands in different View Models
Putting my requirement in very easy steps. Searched a lot on web but got very confused.
I got a Main Window (.xaml)
I got a Menu control, with Save option (a user control)
I got 3 more user controls ...
0
votes
1answer
47 views
MVVM: using commands when binding to collection of business model object
There has been debate whether we should bind model properties directly to the view. But most of the xamples online bind model properties to view directly e.g. {Binding Model.Property}
I was ceating a ...
1
vote
1answer
62 views
Run a command when responding to an event
Basically, I am trying to respond to an event raised by a WPF control, but instead of using code-behind, run a command (an ICommand) instead.
I have a Window called CouponView and a UserControl ...
0
votes
1answer
174 views
No SelectionChanged event triggered in a ComboBox (WinRT with Windows.UI.Interactivity)
I am using recently released Windows.UI.Interactivity library to wire some events to MVVM commands in a WinRT app. It works fine for ListView, however no event is fired in a ComboBox. Here's a ...
1
vote
4answers
251 views
How can I invoke a command on the ViewModel on SelectionChanged of a ListView?
In a MVVM/WPF environment, I want to invoke a command (ComputeCommand) on the ViewModel when the SelectionChanged event of a ListView is raised. How can this be done, either in XAML or in C#?
Here is ...
4
votes
1answer
118 views
Commands in MVVM
I've been seeing tutorials where people are creating the methods like CanExecute in their code. I'm assuming they are doing this to help the reader understand how it all works. When I look up Command ...
0
votes
1answer
221 views
Button doesn't become disabled when command CanExecute is false
I have a simple-as-can be window with a button tied to a ViewModel with a command.
I expect the button to be disabled if MyCommand.CanExecute() is false. But it seems that WPF will only set the ...
0
votes
2answers
127 views
How to bind to the close event of the Infragistics WPF TabItemEx?
I'm developing a WPF project from MVVM way.
I bound Observable Collection to a XamTabControl. And if I add a new item to the Observable Collection a new tab is generated. But if I close the tab, the ...
0
votes
2answers
248 views
Hook up the key down in TextBox (MVVM)
Have a little problem with hooking up the keydown event without codebehind!
So, we have the combobox
<ComboBox Height="20" Width="auto"
ItemsSource="{Binding AlignComboItems}"
...
0
votes
2answers
130 views
MenuItem with subitems binded to Commands. (MVVM)
Have a code like:
<MenuItem ItemSource="SOURCE">
..sub MenuItems
</MenuItem>
How to create the right template that allows to bind the each subitem to the save command.
2
votes
2answers
81 views
Validate a Command to only allow 1 Row to be entered in Database
I am creating an application that allows users to enter in their details into the database using MVVM and EF. I have a User Control which allows a user to enter a set of details into the database.
...
4
votes
1answer
1k views
Difference between Delegatecommand, relaycommand and routedcommand
I'm confused about command pattern. There are so many different explanations about the commands. I thought the code below was delegatecommand, but after reading about the relaycommand, I am in doubt.
...
1
vote
1answer
82 views
How to start a new WPF page by pressing a button
I'M having a problem with start a new WPF page with use of commands. I tried with use a new WPF window by writing but nothing happens.
I can't see the error? And the program works fine but when the ...
1
vote
1answer
63 views
How to hook up an Undo Command that lives in the ViewModel to be called by Ctrl-Z?
I implemented my own Undo/Redo functionality (with a lot of help from the web) which was enlightening. The Undo and Redo commands are defined in the ViewModel. I am able to hook these commands up ...
1
vote
1answer
233 views
WPF: Add a command to auto-generated by binding menu items
MVVM is used. I created separate menu 'Recent files' which gets its items from binding. It looks like that:
<MenuItem Header="_Recent files" ItemsSource="{Binding RecentFiles, ...
0
votes
2answers
413 views
WPF MVVM: How to enable/disable buttons in ListBox if I'm using a DataTemplate
I have a WPF/MVVM app with a ListBox which displays data through a DataTemplate. I managed to change the selected item in the ListBox when pressing a button so the CommandParameter is linked to the ...
0
votes
2answers
299 views
c# wpf Binding Command - access value of textbox from command
I want to call a simple Command which adds values from my GUI into the database.
My Command:
private ICommand addSpeechCommand;
public ICommand AddSpeechCommand
{
get
{
if (addSpeechCommand ...
3
votes
1answer
450 views
WPF TabControl change TabItem with Command
I have a WPF application and in the main window I have a TabControl.
I would like the TabItems to fire a RelayCommand that I have in my ViewModel when they get selected (different commands for each ...
1
vote
1answer
480 views
Binding Command in Datagrid with Prism WPF
I have searched around google about my problem and cant find any answer that can solve my problem.
I tried to binding a command from a button inside my datagrid in WPF. I used Prism to handle the ...
0
votes
2answers
186 views
fire RaiseCanExecuteChanged when items of a Listview are changed
I'm using a MVVM pattern with Prism
I've got a list of Elements in an ObservableCollection, in my Model. In my View, i binded the ObservableCollection to a Listview, then i trye to display 1 button ...
0
votes
2answers
338 views
Create object from View input and pass it to ViewModel (in MVVM)
Recently I'm developing my first project using MVVM concept (I use WPF). I've read many tutorials (ia. famous J.Smith's one) about MVVM before I started writing a code. Everything I've read had been ...
0
votes
1answer
36 views
Dynamic search in mvvm view
I'm creating a customer search screen in WPF, trying to follow the MVVM pattern.
My scenario is I have three possible search options at present:Customer surname; Customer Reference no; Customer with ...
1
vote
6answers
878 views
Execute command after view is loaded WPF MVVM
I have project based WPF and MVVM.
My project based on wizard with content control which shows my views (User Controls)
I want to execute command after view is loaded completely, I want that the user ...
0
votes
1answer
105 views
Command hotkeys and TextBox input in MVVM application
I have an application using MVVM pattern. There are some commands implemented using CommandReference and DelegateCommand classes. Thay are binded in the MainWindow InputBindings to some hotkeys. For ...
0
votes
2answers
294 views
Binding to base viewmodel command from View
I have a base viewModel and two derived viewModels from it. In my base viewModel I have some commands CloseCommand, CancelCommand etc.
My View is attached to one of the derived viewModels. I need to ...
0
votes
1answer
205 views
Invoking multiple command targets from a single command source
i need to invoke multiple instances of a command
for this example i'll take 2 controls 'A' and 'B'
'A' would be the Invoker and 'B' the invokie and there are multiple instances of 'B'
the ...
0
votes
2answers
229 views
Get click position over command binding
What I want to do is a UserControl containing a section with a grid, where something happens when clicking on the grid. I need the position of the pixel where the click happened and I'm doing all of ...
0
votes
2answers
69 views
Command and CommandParameter design
Let's say you have a view-model that controls a media player. It has to offer standard control features like Star, Stop, Pause and Resume.
I'm thinking of two ways to design it in the view-model
...
0
votes
1answer
115 views
validation during click button
I have button:
<sdk:Frame Margin="0,37,0,-15"
Source="/View/Login/LogIn.xaml">
<navigation:Frame.UriMapper>
<uriMapper:UriMapper>
...
0
votes
1answer
2k views
How to bind WPF button to a command in ViewModelBase?
I have a view AttributeView that contains all sorts of attributes. There's also a button that when pressed, it should set the default values to the attributes. I also have a ViewModelBase class that ...
2
votes
4answers
383 views
How do I pass a variable as a CommandParameter
I'm trying to send a variable from the ViewModel as a parameter to a command. The command looks like this:
public class EditPersonCommand : ICommand
{
private bool _CanExecute = false;
public ...
3
votes
3answers
665 views
MouseDown, PreviewMouseDown, etc… and COMMAND Binding in MVVM
I'm trying to understand this concept and it's eluding me.
What is the general concept behind this? I know it's possible, but I'm not totally following how to do this based on my research/own test ...
0
votes
1answer
201 views
I know I'm doing something wrong with RaiseCanExecuteChanged and CanExecute
Well after fiddling with MVVM light to get my button to enable and disable when I want it to... I sort of mashed things together until it worked.
However, I just know I'm doing something wrong here. ...
1
vote
2answers
808 views
Firing a RelayCommand from a button inside a WPF DataGrid
I have a DataGrid showing a list of customers defined in xaml as follows bound to my ViewModel:
<DataGrid Name="CustomersDataGrid" ItemsSource="{Binding Customers}">
...
2
votes
2answers
232 views
WPF binding issues while using MVVM
Time for my first question :)
I have the following:
public class BuilderViewModel : INotifyPropertyChanged
{
#region Implementation of INotifyPropertyChanged
public event ...
0
votes
0answers
395 views
DataGridRow LostFocus Command
In my application I have a Datagrid that I want to set a style upon its DataGridRows such that when the row loses focus, a command is executed. My approach to this was to use an attached property and ...
0
votes
1answer
211 views
WPF MVVM and Commands
I am trying to create a WPF application taking advantage of Commands but I am having an issue with commands enabling menu buttons. I am doing some simple validation, in this case, the "Save" button is ...
0
votes
1answer
244 views
EventToCommand or Attached Behaviour for Events in WPF?
I was wondering What I should use for event in MVVM,EventToCommand or Attached Behaviour ?
which one has better performance?
0
votes
2answers
818 views
How to subscribe event in datatemplate of listview
In WPF I have a listview that is bound to an ObservableCollection.
XAML:
<ListView Name="listView" DockPanel.Dock="Top" ItemsSource="{Binding Path=ListOfOldData}" SelectedItem="{Binding ...
1
vote
2answers
344 views
My ViewModel knows about the View, how do I fix this?
I think the code is self-explanatory.
<Interactivity:Interaction.Triggers>
<Interactivity:EventTrigger EventName="Deleting">
<MVVMLight:EventToCommand Command="{Binding ...
2
votes
5answers
1k views
Force binding to update when Command is triggered
is there a way to update a binding before or when a command is triggered? I have some text fields I can edit and save using a command, accessible via a keyboard shortcut. As the binding is usually ...
3
votes
1answer
967 views
Command to call method from viewmodel
OK, I tend to avoid using commands because they always manage to confuse the hell out of me, but I'm on a new project and am trying to architect it correctly with no code behind on my view. Basically ...
0
votes
1answer
347 views
WPF RibbonApplicationMenuItem Command Binding
Build a menu using the WPF Ribbon. My application is in the MVVM pattern. To connect the RibbonButton the ViewModel, use the form:
Command="{Binding Logoff}"
It works correctly.
Now, using the ...
1
vote
1answer
242 views
Firing Command from Buttons within Combobox using MVVM Light
I am having a problem with a custom ComboxBox firing events. The idea is to have the combobox bound to a collection of items with an Edit and Delete button in-line with each item. I can make the ...


