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"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="MainWindow" Height="768" Width="1024" Source="Home.xaml"
    WindowState="Maximized" ResizeMode="NoResize" ShowsNavigationUI="False" WindowStyle="None" Cursor="Arrow" Closing="NavigationWindow_Closing"></NavigationWindow>

and i have some page which display in this navigarionwindow like

<Page x:Class="KioskTraffic.Page1
      xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
      xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
      xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
      xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
      mc:Ignorable="d" 
      Height="768" Width="1024"
    Title="Page1">

How can i know which page is running currently under NavigationWindow.xaml.cs file?

I have a timer in this navigation window that want to check if current page is home.xaml then i don't want to start that timer.

please help....

link|improve this question

Question needs more context and active participation by owner. – Bahri Gungor Oct 3 '11 at 16:22
I Have edit my question in simple way and still waiting for answer.... – Viral Sarvaiya Oct 4 '11 at 4:43
feedback

2 Answers

up vote 2 down vote accepted
+50

You can get current running page in code behind using CurrentSource property of navigation window. As per your requirements, it's done using NavigationService.Navigate() method like below :

NavWindow.xaml :

<NavigationWindow x:Class="WPFTest.MyNavWindow" 
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="MainWindow" Height="768" Width="1024" Source="ShopList.xaml" Grid.Row="1" 
        WindowState="Maximized" ResizeMode="NoResize" ShowsNavigationUI="True" WindowStyle="SingleBorderWindow" Cursor="Arrow" Navigated="NavigationWindow_Navigated">
</NavigationWindow>

NavWindow.xaml.cs :

namespace WPFTest
{
    public partial class MyNavWindow : NavigationWindow
    {
        public MyNavWindow()
        {
            InitializeComponent();
        }

        private void NavigationWindow_Navigated(object sender, NavigationEventArgs e)
        {
            MessageBox.Show(((NavigationWindow)this).CurrentSource.ToString());
        }
    }
}

ShopList.xaml :

<Page x:Class="WPFTest.ShopList"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="ShopList">
<Grid>
    <Label Height="28" Margin="81,12,99,0" Name="label1" VerticalAlignment="Top" FontSize="16" FontWeight="Bold">Shop List</Label>
    <Button Name="btnNext" Content="Go to Product list" Width="150" Height="30" Margin="0,50,0,0" Click="btnNext_Click"></Button>
</Grid>

ShopList.xaml.cs :

namespace WPFTest
{
    public partial class ShopList : Page
    {
        public ShopList()
        {
            InitializeComponent();
        }

        private void btnNext_Click(object sender, RoutedEventArgs e)
        {
            NavigationService.Navigate(new System.Uri("ProductList.xaml", UriKind.Relative));
        }
    }
}

ProductList.xaml :

<Page x:Class="WPFTest.ProductList"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="ProductList">
    <Grid>
        <Label Height="28" Margin="81,12,99,0" Name="label1" VerticalAlignment="Top" FontSize="16" FontWeight="Bold">Product List</Label>
    </Grid>
</Page>

It's working fine for me. Hope this solve your problem. Please feel free to ask if it not solve.

UPDATE :

If you want to navigate page using class name instead of Uri then you can get current source like :

MessageBox.Show(((NavigationWindow)this).NavigationService.Content.GetType().Name.ToString() + ".xaml");
link|improve this answer
I m getting error "Object Reference is not set an object of an instance" first time when my first page load, its ok but when i click to button "this.NavigationService.Navigate(new TimeoutDisplay());" it gives me that error. From any page i want to get page name. – Viral Sarvaiya Oct 4 '11 at 9:05
@ViralSarvaiya : there should be System.Uri("yourpage.xaml", UriKind.Relative) instead of TimeoutDisplay() in your code. – Upendra Chaudhari Oct 4 '11 at 9:22
Here i m taking a class instead of URI. – Viral Sarvaiya Oct 4 '11 at 15:29
Yes, that error comes from line : MessageBox.Show(((NavigationWindow)this).CurrentSource.ToString()); If you use class name instead of Uri then you can it like my updated answer. – Upendra Chaudhari Oct 5 '11 at 4:58
Thanks, i will try and let u know... – Viral Sarvaiya Oct 5 '11 at 6:54
show 2 more comments
feedback

The NavigationWindow has a property called CurrentSource which is the URI of the last page navigated

link|improve this answer
but in WPF it gives me URI only first time not after that, i m doing this.navigationservice.navigate(new MyNewpage()); for navigate to another page. – Viral Sarvaiya Sep 30 '11 at 19:30
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.