Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8163645
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T19:06:38+00:00 2026-06-06T19:06:38+00:00

I am creating an application that works like the ‘wizard’ component of some microsoft

  • 0

I am creating an application that works like the ‘wizard’ component of some microsoft applications. To represent this, I have two ViewModels:

class WizardVm {
    public string Name { get; set; }
    public ICommand QuitCommand { get { /* ommitted */ } }
    public WizardStepVm CurrentStep { get; set; }
}

class WizardStepVm {
    public string StepName { get; set; }
    public string StepText {get; set; }
}

In the view, WizardVm binds to a window, and WizardStepVmbinds to a content panel inside the window. I am creating the content control programatically, and adding it to the WizardView like this:

// in the "DataContextChanged" handler for the WizardView
var bn = new Binding("CurrentStep");
bn.Mode = BindingMode.OneWay;

var contentControl = new ContentControl();
contentControl.SetBinding(ContentControl.ContentProperty, bn);
WizardViewStackPanel.Children.Add(contentControl);

This renders correctly when the WizardView is initially created. However, if CurrentStep changes, the view does not update to reflect this. CurrentStep changes, but ContentControl continues to display the original WizardStepVm. Also, the old WizardStepVm continues to exist in memory, and its string properties can still be changed (from the view).

Why is this? What do I have to do so that the content control changes to reflect changes in the ViewModel that it is bound to?

(There is actually a good reason for doing this programatically. However, xaml solutions are also appreciated.)

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-06T19:06:39+00:00Added an answer on June 6, 2026 at 7:06 pm

    Your class needs to implement the INotifyPropertyChanged interface to notify the UI every time
    one of its properties changes:

    class WizardStepVm : INotifyPropertyChanged {
        public event PropertyChangedEventHandler PropertyChanged;
    
        private void NotifyPropertyChanged(String info)
        {
            if (PropertyChanged != null)
            {
                PropertyChanged(this, new PropertyChangedEventArgs(info));
            }
        }
        private string m_stepName;
        public string StepName {
          get {
            return m_stepName;
          }
          set {
            m_stepName = value; 
            NotifyPropertyChanged("StepName");
          }
        }
        /* etc... */
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am creating C# application that uses OCX component. I have this component from
I have an application that I'm creating and would like to run a shell
So I'm creating an application within a the CodeIgniter framework that works as a
I am creating an application that uses popups. However, I would like to animate
I am creating an application that will have a list of items that can
I'm creating library swfs in as3 this way, works like a charm (except for
I am creating an application that will have multiple images on the screen, these
I have a CakePHP 1.3 application that has a login system, which works well.
I have an ASP.NET MVC (using the release candidate) application that works with a
I am creating a new Rails 3.1 application. I would like this new application

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.