Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
3answers
728 views

Any MVVM frameworks work well with NavigationWindows?

I'd like to "throw away" the current version of a WPF application and move version 2 to a stable MVVM framework. The main concern I'm having is that I don't see much talk about MVVM frameworks and ...
3
votes
3answers
8k views

Using a Button to navigate to another Page in a NavigationWindow

I'm trying to use the navigation command framework in WPF to navigate between Pages within a WPF application (desktop; not XBAP or Silverlight). I believe I have everything configured correctly, yet ...
2
votes
2answers
235 views

Can the F5 key be disabled in a navigation window in WPF?

I have a small application that uses a navigation window and a set of pages. My application is not a browser per se and thus I dont want the user to be able to refresh the page by pressing F5. Is ...
1
vote
2answers
209 views

How to cancel WPF app closing from Page?

I'm using a WPF NavigationWindow and some Pages and would like to be able to know when the application is closing from a Page. How can this be done without actively notifying the page from the ...
1
vote
1answer
79 views

NavigationWindow history is not saving states properly

I have a NavigationWindow (window1) and a custom navigationstate. What I currently am using to do my navigation is as such: a function (navigate(string,bool) ) which takes the location (a URL) that ...
1
vote
1answer
716 views

Is it possible to have an animation appear on WPF NavigationWindow?

I have a NavigationWindow which hosts a series of Pages. For design reasons the Pages are fixed at 780x580 but the NavigationWindow can be set to maximize, leaving a lot of black background around my ...
0
votes
0answers
15 views

Add a button to NavigationWindow bar but preserve the theme (aero)

Is it possible to add a button to NavigationWindow bar but preserve the aero theme http://msdn.microsoft.com/en-us/library/aa970054.aspx How to preserve the default theme (aero)? Thank You.
0
votes
2answers
30 views

How do I use the NavigationWindow.Navigate method?

I have a NavigationWindow and a folder called Views. In that folder is a user control called Home. How do I navigate to that page?
0
votes
1answer
68 views

Layout navigation window

I would like to build a WPF window application using the following layout structure. Consider title and button on left hand frame/window like "Master Pages" in ASP.Net. On the right hand frame it ...
0
votes
0answers
85 views

NavigationService Null Reference Exception (Using Kinect SDK)

I am currently trying to use the NavigationWindow with the Kinect SDK to switch from page to page (or page function) in my application: public void ThumbnailEvent(object sender, EventArgs e, ...
0
votes
0answers
91 views

Close pages in navigation window, WPF Desktop Application

I am writing an application in VB.net and WPF that uses a explorer menu and a frame, my pages in code behind uses singleton pattern for keep the state of page in application while this don’t close by ...
0
votes
1answer
78 views

The type 'NavigationWindow' does not support direct content

I am trying to use NavigationWindow class instead of Window to allow navigation between windows in WPF application. But when adding content to the NavigationWindow in XAML, I am getting an error: "The ...
0
votes
2answers
260 views

Get Current running page in WPF navigation NavigationWindow

I m new in WPF, i am developing a navigation application of WPF, <NavigationWindow x:Class="KioskTraffic.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" ...
0
votes
1answer
56 views

WPF NavigationWindow scrollbar

I have seen a few posts here that ask about WPF scrollbars and the answer is usually to use a ScrollViewer. The problem with this is, I can only get it to work with a statically sized window. If the ...
0
votes
1answer
270 views

WPF: Maintaining states by implementing tabs with navigation windows?

I'm making an application in C# WPF that consists of a top-root NavigationWindow with several pages that I navigate between for the purpose of the project. At this point, I want to extend the ...
0
votes
3answers
420 views

NavigationWindow - Where is it?

Hey. My WPF application is becoming a real pain. I have created a Window and would like to load another page when I click on a button. I assumed this would be straightforward, but it doesn't seem to ...
0
votes
2answers
751 views

Add PRISM Region Manager In Existing Navigation Window

We have a "legacy" WPF applicaton that is based on a NavigationWindow. The NavigationWindow has a fairly large ControlTemplate that houses a ContentPresenter as so: <ControlTemplate> ...