2
votes
3answers
51 views
To MVVM or not to MVVM that is the question
Hi
I am rewriting my windows forms based application and I am going to use WPF.
The application relies heavily on drag and drop techniques, in a very graphically environment. The u …
2
votes
3answers
30 views
silverlight - communicate between 2 view models in MVVM using commands
hi all ,
i am working on MVVM and using commanding in silverlight(DelegateEvent and ICommand)
I want something like this ,(say) i have 2 usercontrols , parent and child .
Parent …
0
votes
0answers
20 views
Binding to a Model that Contains a Collection/List
Hello,
I'm building a simple financial record-keeping application. The main window view model holds a list of Accounts. The view shows this list (in a ListView) along with a panel …
0
votes
1answer
13 views
Advisable approach for nested lists for binding in WPF
Question: What would be the most effective way of doing a nested list which allows for data binding in the view and awareness of what shipment is selected so that command bindings …
3
votes
5answers
79 views
WPF: update UI from ViewModel class (mvvm pattern)
Hi,
I'm using the MVVM pattern in my first WPF app and have a problem with something quite basic I assume.
When the user hits the "save" button on my view, a command gets execut …
0
votes
2answers
44 views
Reactive Extensions (Rx) + MVVM = ?
One of the main examples being used to explain the power of Reactive Extensions (Rx) is combining existing mouse events into a new 'event' representing deltas during mouse drag:
v …
0
votes
2answers
56 views
Where should the data be stored in MVVM?
I've got this Silverlight Prism application that is using MVVM. The model calls a WCF service and a list of data is returned.
The ViewModel is bound to the View, so the ViewModel …
2
votes
3answers
44 views
Case Conventions in wpf using MVVM
Is there a standard for case and naming conventions in wpf/mvvm that differs from C#?
I am accustomed to camelCase with the first character being lower case for private and upper …
2
votes
3answers
57 views
Using Silverlight MVVM with Prism/Unity, and need to detect when view is closed.
I am writing an app using the MVVM (Model-View-ViewModel) pattern and am leveraging the Prism and Unity bits from the Microsoft P&P team.
I have a View with a list of items. …
0
votes
5answers
58 views
Push common ViewModel functionality into a base class?
I'm using MVVM with Prism and Silverlight. I have multiple different views of one model. As I am writing more views their ViewModels seem to duplicate a lot of common code relate …
0
votes
2answers
28 views
Selected item in Silverlight DataGrid
Hi All,
I have some XAML like this (silverlight 3.0),
<data:DataGrid Margin="0,20,0,0" ItemsSource="{Binding Path=Upgrades}" =
AutoGenerateColumns="False" VerticalAlignmen …
2
votes
1answer
54 views
Where to put the calls to WCF or other webservices in MVVM?
I'm building Silverlight applicaitions using Prism and MVVM.
When calling WCF services on your own server, or even external webservices like the Bing api, would this be done from …
0
votes
1answer
39 views
WPF ReadOnly Dependency Properties using MVVM
Hi,
I've recently overridden the DevXpress WPF grid to give myself a SelectedObject property that I can access from my loosely bound ViewModel.
I've made a SelectedObject depende …
0
votes
2answers
43 views
Getting Unity to Resolve views in XAML
I'm starting out with MVVM, and I'm starting to understand things. I'm currently experimenting with the Cinch framework, though I'm not committed to it as of yet.
I was injecting t …
0
votes
1answer
28 views
WPF Toolkit DataGrid MultiSelect with MVVM - Please Help
Hi,
We're using the WPF DataGrid from the WPF Toolkit and are employing MVVM. I'm finding some challenges in using MultiSelect in MVVM and am sure that I'm just missing something …
