Binding a ContentControl to UserControl, and reuse same instance

10,956

Too long for a comment.

Building up on what @Kent stated in your comment, The whole point of MVVM is to disconnect the view-model from view related stuff(controls) which blocks the testing capability of GUI applications. Thus you having a UserControl / Button / whatever graphical view-related item negates the entire principle of MVVM.

You should if using MVVM comply with its standards and then re-address your problem.

  1. With MVVM you normally have 1 view <-> 1 view-model
  2. View knows about its View Model(Normally through DataContext). Reverse should not be coded into.
  3. You try to put logic controlling the view in the view-model to allow testing logic(Commands and INPC properties)

... and quite a few more. It's pretty specific in the extents of view-model not having view related stuff for eg not even having properties in view-model like Visibility. You normally hold a bool and then in the view use a converter to switch it to the Visibility object.

Reading up a bit more into MVVM would certainly help you,

Now for something to address your current issue:

Following a MVVM structure,

your going to have ViewModels such as

  • Main: MyViewModel
  • Derive all instance ViewModels from a base to allow them being kept in a list.
  • List or hold individually Instance1ViewModel, Instance2ViewModel, Instance3ViewModel in MyViewModel (Either create it yourself or if your using an IOC container let it inject it)
  • Have MyViewModel expose a property just like your posted example:

Example:

// ViewModelBase is the base class for all instance View Models
private ViewModelBase _currentFrame;
public ViewModelBase CurrentFrame {
  get {
    return _currentFrame;
  }

  private set {
    if (value == _currentFrame)
      return;
    _currentFrame = value;
    OnPropertyChanged(() => CurrentFrame);
  }
}
  • Now in your MyView.xaml View file you should(does'nt have to be top level) set the top-level DataContext to your MyViewModel
  • Your View's xaml can then be declared like:

Example:

...
<Window.Resources>
  <DataTemplate DataType="{x:Type local:Instance1ViewModel}">
    <local:Instance1View />
  </DataTemplate>
  <DataTemplate DataType="{x:Type local:Instance2ViewModel}">
    <local:Instance2View />
  </DataTemplate>
  <DataTemplate DataType="{x:Type local:Instance3ViewModel}">
    <local:Instance3View />
  </DataTemplate>
</Window.Resources>
<Grid>
  <ContentControl Content="{Binding Path=CurrentFrame}" />
</Grid>
...
  • Thats it!. Now you just switch the CurrentFrame property in your view-model and make it point to any of three instance view-models and the view will be correspondingly updated.

This gets you an MVVM compliant application, for your other issue of working around not having to recreate views dynamically based on DataTemplate you could follow the approaches suggested here and expand it for your own usage.

Share:
10,956
cederlof
Author by

cederlof

Doing his best to be a pragmatic programmer and has an interest towards .NET Framework/Core, JavaScript and the like.

Updated on June 04, 2022

Comments

  • cederlof
    cederlof almost 2 years

    I'm trying to bind a ContentControl's Content to a UserControl I have instantiated in my ViewModel. I cannot use the method with binding to a ViewModel and then have the UserControl be the DataTemplate of the ViewModel, as I need the Content of the ContentControl to be able to change frequently, using the same instance of the UserControls/Views, and not instantiate the views each time i re-bind.

    However, when setting the UserControl-property to a UserControl-instance, and then when the view is rendered/data-bound I get: Must disconnect specified child from current parent Visual before attaching to new parent Visual. Even though I have not previously added this UserControl to anywhere, I just created this instance earlier and kept it in memory.

    Are there a better way to achieve what I am doing?

    In the ViewModel

    public class MyViewModel : INotifyPropertyChanged
    {
        //...
    
        private void LoadApps()
        {
            var instances = new List<UserControl>
                              {
                                  new Instance1View(),
                                  new Instance2View(),
                                  new Instance3View(),
                              };
            SwitchInstances(instances);
        }
    
        private void SwitchInstances(List<UserControl> instances)
        {
            CenterApp = instances[0];
        }
    
        //...
    
        private UserControl _centerApp;
        public UserControl CenterApp
        {
            get { return _centerApp; }
    
            set
            {
                if (_centerApp == value)
                {
                    return;
                }
    
                _centerApp = value;
                OnPropertyChanged("CenterApp");
            }
        }
    
        //...
    }
    

    In the View.xaml

    <ContentControl Content="{Binding CenterApp}"></ContentControl>