Tagged Questions
0
votes
1answer
26 views
How to transfer an argument in windows store app in MVVM?
I'm starting in c# and windows 8 applications. The answer must be very simple but I can't do that.
I work in MVVM Light Model.
There is my code in page1.xaml.cs :
private void ...
0
votes
0answers
66 views
MVVM Light navigation service - parameters in windows rt
I see in the MVVM Light toolkit there is a NavigationService. This is very straightforward when you are just navigating to a view and passing no data i.e.
...
0
votes
1answer
102 views
How to pass query string parameters from one page and get in another in WP 7 using MVVM Light
I am developing application in Windows Phone 7 in MVVM arhticeture.
I have never worked with MVVM Light. But today for sending querystring parameters from ViewModel of first Page to another, I have ...
0
votes
1answer
79 views
WPF Navigation between child views
I have an application that consists of a shell, a content control that acts as a region and child content controls that goes into that. When the application loads, it starts in a file load view, and ...
1
vote
4answers
132 views
Portable class library: navigate to xaml page
I have a portable class library with 3 projects.
Project for common classes for Windows Phone and Windows tablet
Project for Windows Phone
Project for Windows tablet
In my common project i have a ...
1
vote
2answers
181 views
MVVM: Handling list item navigation with keyboard in Windows 8
I am totally new to Windows 8 development and I am now facing an issue mixing touch and keyboard navigation using MVVM Light.
So I have a list of view models in a grid view and whenever one of those ...
0
votes
1answer
72 views
Creating a Visual Studio style errors tool window with jump to error functionality
I'm using Caliburn Micro to create a Visual Studio style interface for my application.
The user could have multiple errors in multiple windows which are all shown on an 'errors' view which is docked ...
0
votes
1answer
86 views
How do I navigate from one user control to another
I have A.XAML and B.XAML .
I want to navigate from A to B when I click on a button in page A.
<Button Grid.Row="2" Content="View Sequence" command={binding myCommand} />
So , Inside ...
0
votes
2answers
182 views
MVVM Page Navigation
Have begun a WPF app following mvvm pattern and have hit an issue. I have a Customers page which has a number of searches and returns a list of customers. When I double click a record I want to be ...
1
vote
1answer
102 views
Binding to ViewModels that are displayed using a ContentPresenter and DataTemplates?
I am currently using an ItemsControl at the top of my application that contains a few buttons, bound to a list of ViewModelBases. These VMs are the pages of my app. When clicked, they set the current ...
0
votes
0answers
325 views
Silverlight navigation with the MVVM pattern
I followed Robert Garfoot's blog "Silverlight Navigation With the MVVM Pattern".
It allows you to take the navigation handling from the page's code-behind in a vary elegant way.
He makes Navigate, ...
0
votes
2answers
110 views
MVVM and Navigation in Silverlight
Suppose I'm using the MVVM approach (Silverlight)
I'm having all my buttons handled with commands.
Suppose I have a button used to navigate to a certain page, say we selected a customer in a grid ...
0
votes
1answer
153 views
navigate from login page to usercontrol after login using mvvm
I have login page and I have bind login button to command in view model. I want to navigate from this page to other user control which is Home page.
It is possible to do this using binding between ...
1
vote
1answer
179 views
Best architecture for creating navigation using MVVM & WPF
I`m begginer in WPF and MVVM.
I created new navigation project which has mainMindow that contains frame.
I also created 3 pages and i want by binding commands from mainWindows to my ViewModel which ...
0
votes
0answers
198 views
Naviagate to a View when a RibbonTabItem is selected.[MVVM,PRISM]
I have each Module has a RibbonTabItem. I want to navigate to the module's MainView when Ribbon Tab is selected. I tried to bind to The Ribbon's SelectedTabItem property to a property in the ...
0
votes
2answers
223 views
Sharing a Model among pages (views) in a Metro Style App
I have a Metro app consisting of several pages, all deriving from LayoutAwarePage. I've implemented navigation to and back from them. This works like a charm. What I want to do now is to share common ...
0
votes
2answers
315 views
WPF MVVM Window navigation
I'm applying the MVVM pattern to my application that will have dozens of screens (with the respectives ViewModels). Now I'm stuck in a very simple point ... who has the responsibility to create the ...
0
votes
1answer
336 views
Correct approach to make a ListBox Page Navigation using MVVM on Windows Phone
I am building an app for Windows Phone, and in this app I have a list of Movies with Title, Plot and Picture.
I have this list bound to a ListBox with a custom DataTemplate for the items showing the ...
0
votes
1answer
279 views
Unable to navigate to a view in Prism using ViewModel first approach
I am facing a problem switching to a view. Here is the code using composite Command :
Shell View Model :
private void Navigate(object navigatePath) // this method handles a composite command with ...
1
vote
1answer
358 views
Pass parameters from ConfirmNavigationRequest to NavigationService in Prism
I have a viewmodel that implements IConfirmNavigationRequest and I need to pass information from this viewmodel to a navigation broker class that I have, which is not coupled to any specific views or ...
1
vote
1answer
789 views
View Switching Navigation using Prism,MVVM,Unity
container.RegisterType<object, LabStatusView>("LabStatusView");
Uri LabStatusViewUri = new Uri("pack://application:,,,/LabStatus;component/LabStatusView.xaml",
UriKind.Absolute);
...
1
vote
1answer
844 views
Navigation between Silverlight pages with MVVM
I am creating simple app on Silverlight 4.
In folder of View I have 2(Silverlight Pages) also in ViewModel I have 2 ViewModels.
In Silverligh project I have UserControl that hold one of page.
I need ...
0
votes
1answer
226 views
Navigation in mvvm
I am trying to navigate on a frame with pages but instead of giving views to the page I am giving view models.
This works fine, but the problem is when I navigate between the pages the status of the ...
1
vote
1answer
350 views
How to detect back button -vs- GoBack() in WP7 app
Maybe I'm over-thinking this, but here's what I'm trying to accomplish.
I have two MVVM projects (assemblies) in my WP7 app. One page in the main project will call another page in the second ...
1
vote
2answers
225 views
How do I navigate from a ViewModel?
I am writing a small contrived WPF application for a university project, and i'm taking the opportunity to learn the MVVM pattern. I've implemented my initial start up window which will be a login ...
0
votes
1answer
944 views
navigation in frame by changing the source through WPF view model
I am new to WPF and MVVM. I have Frame in mainWindowView in my WPF application. I have bind the source of frame to SourcePage property of view model:
<Frame Name="frame" Content="Frame" ...
0
votes
2answers
94 views
How to manage the creation of instances when navigating
I am programming WP7 application adhering the MVVM pattern.
I have ViewModelLocator which ensures that each instance of ViewModel is only one. These ViewModels are created when application is ...
1
vote
2answers
171 views
Since a selection list, how can I set the navigation sequentially?
I'm starting a new project in WPF and am now looking into using Prism. For now I'm simply trying to set up the navigation of the application using Prism. Unfortunately, my lack of experience with the ...
4
votes
4answers
598 views
How to preserve the full state of the View when navigating between Views in an MVVM application?
I have an MVVM application that requires basic backward/forward navigation between screens. Currently, I have implemented this using a WorkspaceHostViewModel that tracks the current workspace and ...
0
votes
1answer
247 views
Caliburn Micro and NavigationPane
for my wpf project I am using caliburn micro and NavigationPane.
My question is how can I emplement conductor functionality. That the best way to change current screen by cliking on ...
0
votes
1answer
221 views
How to design a flexible navigation logic in a MVVM project?
I'm designing a project using MVVM pattern, so WPF, binding, etc. are used.
Now, the problem is, requirement of navigation layout and logic keeps on changing.
Today the navigation logic is ...
0
votes
2answers
511 views
ViewModel-first approach to Silverlight navigation
I am looking for a truly decoupled way of supporting navigation in a Silverlight application using MVVM. I am trying to accomplish more of a "purist" implementation of the pattern where the UI is ...
1
vote
2answers
2k views
Prism: How to inject a view-model instance in a region?
After weeks of using Prism I have been through every kind of navigation methods. But there is still one thing that I haven't been able to achieve with Prism "out-of-the-box": navigate to a view-model ...
1
vote
1answer
320 views
NavigationPage is incremented for each HyperlinkButton click (Silverlight)
This is probably one of those questions where the answer really should be too obvious for any to miss. Still, I can't seem to figure out why my "play&learn" application behaves the way it does.
...
1
vote
3answers
501 views
How to pass complex object between pages in Silverlight 4 + PRISM
I am using Silverlight 4 + PRISM + MVVM in my application. I want to pass a complex object to another page. I dont know how to do that. I cant/dont want to use URI parameters.
5
votes
2answers
1k views
Navigating to a details page - shared view model or navigation query string?
When navigating from a list page to a details page, there are two high level ways of passing the selection data between the pages: sharing a view model instance and passing an identifier in the ...
3
votes
1answer
3k views
MVVM Silverlight and page navigation
I'm just starting out with Silverlight and also with the MVVM model.
When performing page navigation and sending arguments from one page to another, .. is the use of querystring the most accepted ...
2
votes
1answer
1k views
NavigationService throws NullReferenceException
Using MVVM Light, I'm trying to develop a rather simple WP7 application. I've run into a problem using the navigation service. I can navigate to a page, but after pressing the back button I can't ...
5
votes
2answers
3k views
Changing between views using MVVM with prism
I'm new to WPF, but from what I've read, a correct way to build applications is to switch up views on the same window.
What I mean is something like a "frame" with a menu and a workspace where views ...
0
votes
2answers
318 views
Silverlight navigation between viewmodels
I'm making a timeregistration project in Silverlight. I have 2 kinds of rights, an admin and a user. I need to send the Logged in user object from one viewmodel to another.
Has anybody any idea how ...
0
votes
1answer
247 views
EventAggregation quick start?
I am created a MainView that it's DataContext is a MainViewModel initialized in xaml.
The MainView contains a ContentControl that is bound to the Content property of the MainViewModel.
I added some ...
1
vote
1answer
1k views
Silverlight Response.Redirect() using mvvm
I'm working on a project where there are 2 kinds of users(user and admin). Now when I log in I want to redirect the users to Views/UserHomePage.xaml and the admins to Views/AdminHomePage.xaml.
So ...
2
votes
3answers
872 views
How do I get the NavigationService without being a Page?
This seems to be a really naive question, but how on earth does one get the NavigationService from outside of a page, like say perhaps a view model? Everybody says that navigation should occur at the ...
2
votes
1answer
470 views
WPF set grid row to a dynamic XAML object using binding
I want have the content of a Grid's row (not DataGrid) bound to a given DataContext property. In others words, I want that the UserControl that appear in, lets say... row 0 of my Grid, change when the ...
5
votes
1answer
3k views
Menu item for each module, with module content loading dynamically with Prism or MEF
I am developing an application currently using Prism and MEF.
I would ideally like to generate a toolbar or menu with an item for each module, and when an item is clicked, only the views declared ...
0
votes
1answer
154 views
MVVM Swapping out controls
I'm new to C# and am trying to learn MVVM by building a simple Crud app. In my App I want to have a series of buttons that when the user clicks on it will load that user control. So when you click on ...
0
votes
1answer
121 views
CurrentItem vs Hyperlink
I have a situtation. Im creating Listbox in Silverlight Navigation App and as datatemplate i have Grid with HyperlinkButton.
I need to select ListBox.CurrentItem AND to Navigate by HyperlinkButton ...
3
votes
2answers
420 views
How To Perform Navigation In Silverlight 4.0 Using MVVM?
I'm new to Silverlight and I'm having trouble understanding how to properly navigate between pages, especially when I need to pass data around.
Classic example: I have a list of People on one page, ...
7
votes
3answers
3k views
Is there a way to call Navigate from within the ViewModel?
I have a Silverlight 4 project which displays a chart and some buttons to allow the user to change the chart's date range. The date range can also be passed in via a query string parameter - ...
4
votes
2answers
1k views
WPF MVVM data binding broken after page navigation
I have a Page within a WPF navigation-style application that displays search results. The page contains several data-bound controls. The page itself works fine; it performs the search and returns ...

