Model View ViewModel (MVVM) is an architectural design pattern that separates the page (the View) from the data (the Model) by way of its presentation logic (its ViewModel).

learn more… | top users | synonyms (1)

0
votes
0answers
2 views

Caliburn Micro 'Enter' Key Event

I am attempting to bind an event with Caliburn Micro and I am having some issues getting the right messages to the method. I would like to add the ability to press the 'Enter' key after changing the ...
0
votes
1answer
24 views

bindings in my WPF combobox are not working?

I have a ListView which displays an image, two textboxes, and a combobox. The ListView is bound to a collection in my view model. The Combobox is bound to yet another collection in my view model and ...
0
votes
0answers
12 views

MVVM: Is ViewModel allowed to close the window?

Recently I answered a question How to Bind to window's close button the X-button with what I thought was an MVVM solution. Please don't focus on actual question there, because that's not what's ...
0
votes
1answer
25 views

WPF MVVM Dynamic Columns Multi-Threaded

I am currently working on a C# System.Windows.Controls.DataGrid that needs to generate the columns dynamically depending on the data. It can add and/or remove columns during runtime. I am using a ...
-4
votes
1answer
64 views

How do I convert a datetime to a short date time in C#? [duplicate]

I am new to MVVM and cannot determine how I convert datetime values to short date time so they display correctly in my datagrid. Can anyone provide some sample code to convert datetime to short date ...
0
votes
0answers
8 views

In Silverlight, How to bind SelectedItem of ComboBox in a ControlTemplate to a ViewModel Property

I have this code of a ComboBox that works and binds the SelectedItem to a property in my ViewModel: dxe:ComboBoxEdit x:Name="luTeacher" Margin="0,5,0,0" AutoComplete="True" ItemsSource="{Binding ...
3
votes
2answers
54 views

Remove from list doen't call setter?

In my c# app (MVVM Pattern) I have something like this: private List<MyClass> _classes= new List<MyClass>(); public List<MyClass> Classes { get { return _classes; } ...
0
votes
1answer
13 views

Singleton WorkingQueue show in WPF View

in my actual project I have a layered application with wpf, mvvm, a logic and model layer. Main task of this app is to convert my videos. So I have implemented a singleton working queue, with a list ...
0
votes
1answer
17 views

WPF datepicker not showing calender alongside

I have wpf datagrid bound using viewmodel which has a date field. I wanted to change datefield textbox editing to calender or datepicker. And followed below link exactly. but for some reason, i am not ...
2
votes
4answers
105 views

Execute a method when the textbox's text is changed

There are these text boxes in my interface: where the Total and Change boxes are readonly. My question is, how do I execute a method to calculate the change as the user types in the payment? The ...
1
vote
1answer
38 views

WPF Notify chain implementation

Here's the model: public class Customer { string Name; public ObservableCollection<Order> orders; } public class Order { int Id; public ...
1
vote
2answers
21 views

WPF Radio Button Fires Converter in strange order

I am writing a simple program using the MVVM Model on WPF. Basicly when the user clicks a radio button in a group of radio buttons, it will update a property in the View Model with the new Account ...
0
votes
1answer
21 views

Eventhandling in MVVM

In MVVM, Model will usually have the data model, view is UI (XAML) which is further binded to the properties VM, ViewModel which typically inherits INotifyPropertyChanged. When it comes to event ...
1
vote
1answer
19 views

MvvmCross: What is the best way to get the selected item from an MvxListView in android?

I'm using MvvmCross v3.06 and I've defined a MvxListView in android which is bound to a list. I can see the list but can't work out the best way to get hold of the item that is selected when I click ...
1
vote
1answer
15 views

MvvmCross: Error with JSON in SimpleRestService.cs

I'm trying to run through Lesson 6 in N+1 Days of MvvmCross but cannot get the SimpleRestService to work. 05-22 16:14:38.156 I/mvx ( 2849): 40.20 Problem creating viewModel of type ...
1
vote
1answer
33 views

WPF Prism - Send an object in navigatoin

I'm writing a WPF/MVVM application using Prism/Unity. I'm having issues on how to transfer data from one usercontrol to another when navigating a region. I have a region This is populated by a ...
0
votes
1answer
28 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
27 views

how to use display the value of an element of a list<string> in MVVM?

Normally, when I binding de items source of a control in the view, the property in the view model use to be a list of an object. This Object has many properties and I can choose one of the to set the ...
1
vote
1answer
51 views

Leftmouseclick on stackpanel

I have a stackpanel with image and button in it. I want to fire event when user clicks on a button in stackPanel. My code in xaml is <StackPanel x:Uid="TemperatureMonitor" ...
0
votes
0answers
17 views

WPF UI window freezes when timer is running

I am building an application using the MVVM pttern in which I have a window with a tab control. WHen any tabitem is selected, I validate it for data errors using IDataError. I then populate a message ...
1
vote
0answers
39 views

MVVM View representation when using a list and multiple view model properties

In reference to a previous question with an MVVM answer I'm trying to build on this, instead of simply using text in the listbox, I want to be able to insert a UserControl that displays 3 different ...
0
votes
1answer
37 views

Invoking method defined in viewModel from global X close button

In a viewModel of my MVVM based WPF application, I have a two commands to handle two different Cancel clicks, at two different states. When there is no ongoing operation progress - it relays the ...
0
votes
2answers
39 views

Changing data using ICommand in MVVM

I have two windows: the parent and the child. There is the listbox in a parent window. MainView: <Button x:Name="btnUpdate" Content="Update" Command="{Binding Path=MyCommand}" ...
0
votes
1answer
30 views

How to get Listview ItemClick Vallue in Relay Command

Hi i'm working in windows store app with MVVM pattern and i have some problem in catch the listview itemclick value in relay command. Now i got the selected item value.But don't know how to get ...
1
vote
1answer
35 views

Model (ViewModel) binding when model needs dependencies injected

I'm using Ninject for dependency injecting in an ASP.Net MVC application (This is my first project using Ninject or DI at all for that matter). I'm opting to using the Model-View-ViewModel pattern. ...
0
votes
0answers
20 views

WPF - Accessing GDPicture object in a viewmodel

I am using MVVM and somehow I should have access to GDpicture object in my viewmodel. here is the XAML <WindowsFormsHost x:Name="WindowsFormsHost1" Height="991" Width="1583"> ...
1
vote
2answers
59 views

Limit the Properties Bound to DataGrid in WPF using MVVM

All, a simple question. I have a MVVM application with a DataGrid which I have bound to a ViewModel using <DataGrid ItemsSource="{Binding Path=Resources}" ...></DataGrid> where the ...
0
votes
2answers
39 views

How to create a hovered toolbar

How to create a hovered toolbar? Clicking to expand the ToolBar will not shrink the Canvas. Expander works for expanding, but the canvas will get shrinked. <UserControl ...
0
votes
2answers
29 views

Call controller $scope methods from nested directives

I have the following directives: Directive 1 app.directive('tableDiv', function () { return { templateUrl: 'js/directives/table-div/table-div.html', replace: true, scope: ...
0
votes
2answers
42 views

Textbox - bound property value does not update immediately

I have a textbox which is bound to a property ItemID like so. private string _itemID; public string ItemID { get { return _itemID; } set { _itemID = value; } } The XAML of the ...
2
votes
1answer
27 views

Show view from non-view/viewmodel in mvvmcross

What is the correct way to open a View in mvvmcross from a non-view? From within a viewmodel we would use ShowViewModel<>(..). Specifically we are responding to a push notification opening the app ...
0
votes
1answer
29 views

Issues with Galasoft Messenger class in multi threaded environment

I have two classes lets say ClassA and ClassB. I have to communicate with the help of Galasoft Messenger class. In ClassA, I have the following code :- Class A : ...
0
votes
0answers
30 views

AutoCompleteBox randomly sets Text Value

I'm using an AutoCompleteBox in a DataGrid for order line items. It works great except for one thing: the text typed into the acb moves unpredictably to other rows in the DataGrid, seemingly at ...
1
vote
1answer
29 views

Give a TabItem Focus when Dynamically Adding Using MVVM

All, I am adding a TabItem to a TabControl dynamically using MVVM. The new TabItems load fine, but I want the added tab to gain focus automatically. That is, I add a tab and I do not want to have to ...
0
votes
1answer
24 views

Windows Phone 8 with Caliburn Micro dialog approach

I am writing a Windows Phone 8 app that manages jobs. I am using Caliburn Micro for MVVM duties. Simplified overview: Page 1 shows a list of jobs. User selects a job. App shows relevant page - either ...
0
votes
2answers
39 views

DataTemplate not being applied

I have a window in which I want to display dynamic content based on a datatemplate. The XAML looks roughly like this: <Window x:Class="Report.ControlLibrary.ReportHost" ...
1
vote
1answer
47 views

How to Add TabItem with Header and Content using WPF and MVVM

All, I have the following XAML in my main window <TabControl ItemsSource="{Binding Path=Workspaces}" Grid.Column="1" Grid.ColumnSpan="3" ...
0
votes
1answer
51 views

Deep Property Binding with Caliburn Micro issues

I am just not figuring out what I am doing wrong. I am trying to use Caliburn Micro on a WPF app(4.5). Trying to follow MVVM for what it's worth. My VM has property of Services and Authorization. ...
0
votes
1answer
51 views

Binding Error When Trying to Cascade Dependency Properties

So I have 4 UserControls on top of each other. Since I got confused a little, I got an image below: The ViewModelLocator is in UserControl 1. The goal is to provide each UserControl with their own ...
0
votes
1answer
30 views

How to pick an ItemViewModel object by LongListSelector Index

I'm trying to use the ScrollTo() method of a LongListSelector to scroll to the top of the list. ScrollTo() takes an object, not an index, so I need to feed it the object which is at the top of the ...
1
vote
3answers
81 views

Binded model to View but button click on working

All, Binded complete Model, values are getting displayed in controls but not able to get button click working... any suggestion? what I m missing or doing wrong ? Thanks <Window x:Class="test" ...
0
votes
2answers
15 views

MvvmCross: Android custom webview urls handlers

My Android application had some complex text with hyperlinks embedded inside. The easiest way for me to handle this was to just use an embedded WebView and detect hyperlink clicks to perform custom ...
0
votes
1answer
16 views

MvvmCross: Tips for mixing MvvmCross with normal techniques

I am trying to convert a mid-size application to use MvvmCross that is already developed using Xamarin for both iOS and Android, but using normal techniques. Is it possible to mix MvvmCross ...
-1
votes
1answer
65 views

Open a new Window in MVVM

Lets say I have a MainWindow and a MainViewModel, I'm not using MVVM Light and Prism in this example. In this MainWindow I want to click a MenuItem or Button to open a NewWindow.xaml not a ...
0
votes
1answer
32 views

asynchronous loading data in wpf mvvm

Please suggest the easiest way to loading data asynchronously to observable collection. Recently i binded the datagrid control to the Observable Collection below as follows: public ...
0
votes
1answer
49 views

MVVM how best to display ListBox.SlectedItem

I have a ListBox bound to a list of ViewModel objects on the LHS of my screen. The ListBox.SlectedItem is bound to a property on my "MainWindowViewModel", called CurrentItem. On the RHS I have a large ...
0
votes
0answers
22 views

Binding SilverLight Treeview From ViewModel Using Entity Framework

I've got a database structure similar to this: Project ProjectID(pk) ProjectName ProjectFile ProjectId FileId(pk) Notes I have to bind a silverlight treeview the Parent should be the ...
0
votes
1answer
21 views

Combining MVVM and N-Tier Architecture

It looks like VM = Business Logic Layer and that the Model = Entities/DTO. In my business logic I am doing the validating of business rules like if FirstName is empty, etc. and it looks like this can ...
0
votes
0answers
25 views

How to retrieve user input from Popup with MVVM in windows8

I have a GridView which contains Product items, in the itemtemplate, there's an edit button, when user click the button, popup a popup window, all of the information about this product filled in the ...
0
votes
1answer
32 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' ...

1 2 3 4 5 168