tags:

views:

53

answers:

1

I've got a Page in a Frame Control. I want to change it by clicking button in a current page. How can I do it?

I've got a full-screen desktop application on WPF (without any window's title and system buttons).

A: 

you can use NavigationService.Navigate() method to navigate through pages in a Frame.

viky
In that case I see a browser line on the top the page. It isn't look pretty :). Can I somehow get access to the parent Frame object from a page in it?
aks
or get rid of this line?
aks
set ShowsNavigationUI="False" in the Page itself to hide that Navigation Bar.
viky
It's a default value, however I tried to place this line of code to several places. It isn't working for me. What place should I put this line?
aks
Thanks! You've given me a nudge. A Frame object has NavigationUIVisibiliy property. I've set it to "Hidden". The problem solved.
aks