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 651797
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T22:12:06+00:00 2026-05-13T22:12:06+00:00

I am using MVVM architecture. I have a usercontrol UC as a View Model

  • 0

I am using MVVM architecture.

I have a usercontrol UC as a View

Model is a ModelData class

ViewModel (UCViewModel) is binded to a usercontrol.

I have three more usercontrols that is inside the usercontrol UC ( discussed above).

Let’s say uc1, uc2 and uc3.

and the visibility of uc1 , uc2 and uc3 inside UC depends on the type selected ( which ever radio button is selected ).

Since UC is binded to UCViewModel and I have to do all the stuff related to uc1 , uc2 and uc3 inside UCViewModel. Can I have seperate VM to uc1 , uc2 and uc3.. if Yes how can i do that ? Please Help!!

  • 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-05-13T22:12:06+00:00Added an answer on May 13, 2026 at 10:12 pm

    As far as I understand your question, you can solve this by having UC expose a SelectedSubView (or whatever) property:

    public object SelectedSubView { get; }
    

    At the same time, you bind the radiobuttons to other properties of UC and update SelectedSubView accordingly (remember to implement INotifyPropertyChanged). Based on the selected radiobutton properties, the SelectedSubView must return the appropriate ViewModel.

    You then bind a ContentPresenter to the SelectedSubView property and use DataTemplates to select the correct user controls (uc1, uc2 or uc3) based on the type of the current SelectedSubView.


    Since you only want to hide inactive Views, it’s probably best to keep their respective ViewModels around, so you may want to make them fields in the UC class

    public class UC
    {
        private MyFirstViewModel vm1;
        private MySecondViewModel vm2;
        private MyThirdViewModel vm3;
        private object selectedVM;
    
        public object SelectedSubView
        {
            get { return this.selectedVM; }
        }
    
        // This method should be called whenever one of the radio buttons
        // are updated (from their bindings)
        private void UpdateSelectedView()
        {
            this.selectedVM = // pick from vm1, vm2, vm3 according to radio button
    
            // Remember to raise INotifyPropertyChanged for SelectedSubView
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to implement a WPF application using MVVM (Model-View-ViewModel) pattern and I'd like
I'm writing a Silverlight app using the MVVM pattern. I have a main view
I'm working on a Silverlight app using the MVVM pattern. My ViewModel currently consists
Using online interfaces to a version control system is a nice way to have
Using TortoiseSVN against VisualSVN I delete a source file that I should not have
Hy guys! I am currently working on a little WPF project using MVVM via
[Edit: Rethinking architecture along mvvm lines made this problem largely fall away - thanks
Using PyObjC , you can use Python to write Cocoa applications for OS X.
Using ASP.NET MVC there are situations (such as form submission) that may require a
Using C# .NET 3.5 and WCF, I'm trying to write out some of the

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.