WPF Navigation

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • =?Utf-8?B?TWFuag==?=

    WPF Navigation

    Hi,

    I have a WPF GUI in c#. I need to navigate to different pages as in a
    Wizard application on a button click event of the wpf GUI.
    e.g. if I click "RepeatOperatio n" button on the GUI it should display the
    different operations performed earlier in different pages in linear fashion.
    As the GUI window is not derived from the NavigationWindo w, I don't have
    the Navigate() event.

    Any idea how to do it? Any help will be much appriciated.

    Cheers.

    Manj.


  • Nicholas Paldino [.NET/C# MVP]

    #2
    Re: WPF Navigation

    Manj,

    Well, it kind of begs the question, if you need a wizard-type app, and
    require navigation capabilities, then why aren't you using a
    NavigationWindo w?


    --
    - Nicholas Paldino [.NET/C# MVP]
    - mvp@spam.guard. caspershouse.co m

    "Manj" <garg@newsgroup .nospamwrote in message
    news:69259C42-66B8-4BF6-BEBB-61D5C74E1842@mi crosoft.com...
    Hi,
    >
    I have a WPF GUI in c#. I need to navigate to different pages as in a
    Wizard application on a button click event of the wpf GUI.
    e.g. if I click "RepeatOperatio n" button on the GUI it should display the
    different operations performed earlier in different pages in linear
    fashion.
    As the GUI window is not derived from the NavigationWindo w, I don't have
    the Navigate() event.
    >
    Any idea how to do it? Any help will be much appriciated.
    >
    Cheers.
    >
    Manj.
    >
    >

    Comment

    • =?Utf-8?B?TWFuag==?=

      #3
      Re: WPF Navigation


      Hi Nicholas,

      Thanks for your reply. The GUI Window contains so many other controls
      (tabcontrols, buttons, charts etc.). If I derive it from NavigationWindo w it
      gives the error in XAML "The type NavigationWindo w does not support direct
      content".

      Cheers,

      Manjree


      "Nicholas Paldino [.NET/C# MVP]" wrote:
      Manj,
      >
      Well, it kind of begs the question, if you need a wizard-type app, and
      require navigation capabilities, then why aren't you using a
      NavigationWindo w?
      >
      >
      --
      - Nicholas Paldino [.NET/C# MVP]
      - mvp@spam.guard. caspershouse.co m
      >
      "Manj" <garg@newsgroup .nospamwrote in message
      news:69259C42-66B8-4BF6-BEBB-61D5C74E1842@mi crosoft.com...
      Hi,

      I have a WPF GUI in c#. I need to navigate to different pages as in a
      Wizard application on a button click event of the wpf GUI.
      e.g. if I click "RepeatOperatio n" button on the GUI it should display the
      different operations performed earlier in different pages in linear
      fashion.
      As the GUI window is not derived from the NavigationWindo w, I don't have
      the Navigate() event.

      Any idea how to do it? Any help will be much appriciated.

      Cheers.

      Manj.
      >
      >

      Comment

      Working...