The MVVM Light Toolkit is a set of components helping people to get started in the Model - View - ViewModel pattern in Silverlight and WPF. It is a light and pragmatic framework that contains only the essential components needed.
0
votes
1answer
29 views
ObservableCollection setter isn't firing when item is added
I am working on a project in WPF using the MVVM Light framework. I have a DataGrid that is bound to an ObservableCollection<Worker>. As of now, when I add a new item, the DataGrid doesn't update ...
0
votes
0answers
4 views
SimpleIoC - Type not found in cache: Windows.UI.Xaml.Controls.Frame
I am running into the below error the first time my ViewModel is being instantiated by the SimpleIoC. I believe I have setup the container as it should be, but for some reason, I am still getting the ...
0
votes
0answers
24 views
Master-detail in XAML with - managing ListView selection through binding/commands whilst allowing cancellation
I'm attempting to build a WPF application for demonstration that follows the best possible MVVM practices, and I've found quickly that I'm not sure what the best practices are! :)
I have a specific ...
0
votes
0answers
21 views
Messenger ArgumentOutOfRangeException/TargetInvocationException in MVVM Light
I'm trying to use the messaging abilities of the MVVM-Light framework, but somehow I keep encountering this problem:
I have a singleton logging class that sends out NofiticationMessages whenever ...
0
votes
0answers
11 views
MVVM How to implement Drag n Drop functionality using MVVMLight IOC (RelayCommand)
Can someone please help me implementing Drag and drop functionality in Windows Store App using MVVMLight IOC.
I'm getting an error "WinRT information: Cannot add instance of type ...
6
votes
2answers
86 views
MVVM ViewModel lots of properties
I am new in MVVM and I am developping an application. I have a form view with a lot of property. About 50. I can not seperate these into usercontrol because I would break the mvvm principles.
I can ...
1
vote
1answer
53 views
MVVM Light RaisePropertyChanged
I am not able to get the UI to respond to RaisePropertyChanged for some reason. Well stuck.
CurrentClient is the part not firing to the UI. Really strange.
Hopefully someone can help me out. Thanks ...
0
votes
1answer
33 views
Recognise the lost focus event of a DataGrid as a whole, not its controls lost focus
GOAL:
I have an WPF/MVVM (mvvm-light to be exact) application where I want to recognise/capture the lostfocus event of the datagid as a whole and bind it to an ICommand in the view model.
The ...
0
votes
2answers
28 views
Modifying ViewModel Properties outside of ViewModel - Values aren't saving
Is it possible to modify properties of a ViewModel by using an instance of ViewModelLocator elsewhere in the code? When I try, any value I try to assign seems to be discarded.
For example, a ...
0
votes
0answers
7 views
How to refresh data grid with new search results with MVVM Light
I'm using the latest MMVM Light windows 8 binaries and VS 2012 latest updates, so all is good there. I'm new to the MVVM Light framework, so it's an adjustment.
I have a Customers page with a grid ...
1
vote
2answers
39 views
Get SelectedItem of WPF Treeview
I am making a WPF application with MVVM Light, and I have the following TreeView:
<TreeView x:Name="TreeView"
Grid.Column="2"
HorizontalAlignment="Left" ...
1
vote
1answer
49 views
WPF application send parameters (MvvmLight with Page navigation)
I have a WPF application with Page navigation. I use MvvmLight toolkit. I have two pages: FirstPage (default page) and SecondPage. On FirstPage I navigate to SecondPage.
I want to pass a parameter to ...
1
vote
1answer
33 views
update GUI for SelectedeRow values of wpf datagrid
I have a wpf (.Net 4.5) datagrid. I am using the MVVM pattern for my application with the MVVM-Light framework.
I have a datagrid that is bound to an observable collection of "Tracking" objects ...
0
votes
0answers
15 views
MVVM-Light and Closing a View
I've been reading a vast number of items on closing a window in WPF using MVVM. I would like to do this as well, but so many of the solutions involve putting code into the code-behind of the view. I ...
0
votes
0answers
18 views
How to make a custom control WPF Resource Dictionary with MVVMLight RelayCommands
Can i / How can I attach commands to a custom control i made and put it into a Resource Dictionary in WPF? I would like to not define this control in multiple places and also not have the code in ...
2
votes
2answers
80 views
asynchronous UI update from ViewModel in WPF
I am having a problem with getting data from db and showing in UI asynchronously.
I am using MVVM light, when I click the button, action is triggered in ViewModel:
private void SearchQuery(string ...
0
votes
0answers
59 views
MVVM Light Test ViewModel with View and create StaticResource Locator
Hy!
I am writing tests what are testing the view. I am using mvvm light toolkit.
I test the viewmodel, I do not want to test the view, but the viewmodel use the views. Because there is a ...
3
votes
1answer
49 views
How to reset all instances in IOC Container
I have made an C# WPF Application using the MVVM Light framework. My Application uses the ViewModelLocator class to locate the viewmodels during runtime. The ViewModelLocator makes usage of the ...
0
votes
1answer
33 views
MVVM Light Messenger & WPF - Update ListView from registered message
I am using MVVM Light's messenger to take in data from a viewmodel, open a child window, and then return updated data. To test things out, I have set the name of the modified object to "Test" upon ...
1
vote
1answer
59 views
WPF & MVVM Light - Closing a specific child window via Messenger
In my project I am able to open multiple child windows, display and return information from them, and then close them with a button click. The problem that I am having is that clicking the "Accept" or ...
0
votes
2answers
68 views
WPF & MVVM Light - Closing a child window with buttons via Messenger
In my project I have a child window, multiple instances of which can be open at a time. They take in an instance of an object, display information about it, and return information about it. Right now ...
2
votes
2answers
77 views
Update progress bar in main thread in MVVM
In my application I perform a long operation and I want to show a progress of the operation. In long operation I use 3rd-party dll. Unfortunately that dll doesn't support calls from non-main thread. ...
0
votes
1answer
26 views
MVVM Light Messenger - Sending and Registering Objects
Could somebody be kind enough to give me an example of how to Send and Register custom objects between classes using MVVM Light's Messenger or point me to a tutorial that covers this (preferably a ...
1
vote
1answer
71 views
MVVM Light & WPF - Binding Multiple instances of a Window to a ViewModel
I am working on my first project in MVVM and I've chosen to use the MVVM Light Toolkit. I have a GameViewModel that handles business on the main screen of my game. I need to find out how to open a new ...
2
votes
1answer
57 views
Notify ViewModel on change in static Model [duplicate]
I'm designing a LogManager class to handle all my logs in my application, in the form of LogMessage objects. They are saved in an ObservableCollection in the class. The LogManager itself is static for ...
0
votes
1answer
43 views
MVVM binding to multiple viewvmodels
Can I quickly confirm if this is a best practice or I should be rethinking my process with MVVM. (I am new to this)
<ComboBox DataContext="{Binding MemberMain, Source={StaticResource Locator}}" ...
2
votes
3answers
119 views
WPF & MVVM Light- Pass object into new window
I would like to learn the most proper way to go about this: I have a Listview in my GameView that is bound to an ObservableCollection<Adventurer>. Upon double-clicking on a cell, I need a new ...
0
votes
1answer
27 views
How to use AutoCompleteBox with MVVM Light?
I am trying to figure out how the best way to use AutoCompleteBox with MVVM Light.
public ICommand AutoComplete
{
get
{
return new ...
0
votes
0answers
28 views
When To Use ICommand Wrapped With RelayCommand and when to use Just ReplayCommand?
I am a bit confused about ICommand and RelayCommand
If I do this on an autocomplete control
public RelayCommand<KeyEventArgs> AutoCompleteCommand
{
get;
...
0
votes
1answer
29 views
How to get all the View(UserControl) in the ViewModel using MVVM Light?
I'm using MVVM Light and I don't know how to get all the View in ViewModel, if I use the arquitecture ViewModel => View is possible.
public MyViewModel : ViewModelBase
{
public MyViewModel()
...
2
votes
1answer
50 views
Accessing Properties in other ViewModels in MVVM Light
I have a main ViewModel containing a List of items which I'm using in a certain amount of UserControls, which are displayed in a ContentControl on the main view. My current way of exchanging data ...
0
votes
1answer
49 views
MVVM Light - Event to Command & ListView - SelectedItem
I have looked all over for an answer to this with no luck. I'm using MVVM Light and I have a ListView in one of my views. I would like to find a way to fire a command when the selected item in my ...
0
votes
2answers
36 views
Basic Binding in MVVM Light?
I am wondering how do you do basic binding in MVVM Light.
Say I want to add a Product
public class Product
{
public string Name {get; set;}
public decimal Price {get; set;}
}
My form will ...
0
votes
1answer
42 views
MVVM Light obtained via NuGet - RelayCommand.cs not found
My program incorporates a copy of MVVM Light via NuGet. Up until about 5 minutes ago it worked without a hitch, but now I'm getting an error saying "RelayCommand.cs not found". Since I got the package ...
0
votes
1answer
57 views
OnNavigatedTo is called two twice on app resuming
I'm having trouble with my WP8 app. It uses the MVVM light library for the creation of the ViewModel and is also used for the page navigation with Messages.
Right now I'm having some problems with ...
1
vote
1answer
25 views
DataGrid elements not showing after Grouping
I have a DataGrid bound to a ListCollectionView containing a few items grouped with the grouping functionality of the ListCollectionView. If I don't add a GroupDescription (so no items should be ...
1
vote
1answer
58 views
MVVM - Access command from different class in XAML
In my project I have a TitleView and GameView. When the program launches, TitleView is displayed. The user clicks a button and GameView is displayed. I am using MVVM Light which includes MainViewModel ...
0
votes
0answers
17 views
remove self reference entity in EntityFramework CodeFirst
i defined bellow classes for my EF in wpf for use in mvvm pattern:
public class ProductGroup : ViewModelBase
{
public long ID { get; set; }
private string _Title;
public string Title
...
0
votes
1answer
14 views
update view from another one the same viewmodel
I am new to the MVVM philosophy, and my question may be stupid but hey, I try anyway.
I have a view associated with a model view. In this view, I open a dialog box when the user presses a button.
...
0
votes
1answer
53 views
ContentControl to display UserControl crashes VS XAML UI Designer
I have a ContentControl with the Content property bound to a UserControl in my ViewModel, like I read in this question: WPF: how do I load user controls dynamically? However when trying to test this, ...
0
votes
0answers
33 views
RaisePropertyChanged doesn't work for ObservableCollection
I have a really weird problem with update UI using MVVM Light Toolkit. The RaisePropertyChanged doesn't work at all for my ObservableCollection.
Here is the XAML code:
<ListBox x:Name="list" ...
1
vote
1answer
69 views
TextBox.Text OneWay Binding Not Responding to Code Behind ViewModel Update
I am currently implementing a search (more properly "filter") form for my View that uses ApplicationBarIconButtons to drive user interactions with the form: a search button to transition to the ...
0
votes
1answer
28 views
Commands in menu not executing, no error
I'm trying to make a dropdownbutton using the Fluent ribbon, to show a menu of all tables available in my database. The menu is generated by using a List that is retrieved from the db into TablesList, ...
0
votes
1answer
28 views
Cannot remove DataRow from DataTable
I'm trying to list all tables from my SQLite database, but I only need the normal tables and not the system tables. I tried this using a foreach and removing the row while looping, but I get an ...
0
votes
1answer
58 views
execute a function in a viewmodel and real time refresh of the view
I have a small problem with my MVVM application.
I have a function in a viewmodel which modify a collection. This collection is bind to the view to show a datagrid. When an user click on a button, ...
0
votes
0answers
13 views
Navigating to other page after applying some logics
I am using MVVM Light toolkit for my application. I have an application which has few pages. In my Home page I do some sort of operations and I want to track if there is some non attended transactions ...
1
vote
2answers
81 views
Navigation between view using MVVM in WPF
Im new to WPF and MVVM.
Im trying to create Login window using MVVM and i succeeded to create.
here is the Login.xmal code.
<Button x:Name="btnLogin" Content="Login" HorizontalAlignment="Left" ...
0
votes
2answers
50 views
What is the purpose of “Design” folder and “Skins” folder in MVVM WPF application created with MVVM Light Toolkit V 4.0?
I bag your pardon. I'm very beginner in MVVM. I installed MVVM Light Toolkit V 4.0 and tryed to create a WPF MVVM application project with it. A project was created successfully. There are following ...
0
votes
2answers
54 views
cleanup all items in a ViewModel when closing window
I have RichBox binded to a List<String>ListName in the using of the window I add some item in this list, but after I close this window and I open it i still have the old added name, I know that ...
0
votes
1answer
57 views
simpleIOC sing default consturctor
I use mvvm light toolkit, and I have a problem with the simpleIOC. I would like to resolve an interface, but there are two constructor of the class, and the simpleIOC does not know which is the ...



