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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T21:20:14+00:00 2026-05-17T21:20:14+00:00

Im trying to get to grips with writing testable ViewModels in Silverlight 4. Im

  • 0

Im trying to get to grips with writing testable ViewModels in Silverlight 4. Im currently using MVVM light.

Im using AutoFac and the IoCContainer is doing its job fine. However to inject into the constructor of ViewModels, which are bound to Views I have this constructor chaining:

    public UserViewModel() : this(IoCContainer.Resolve<IUserServiceAsync>())
    {

    }

    public UserViewModel(IUserServiceAsync userService) 
    {
        if (this.IsInDesignMode) return;

        _userService = userService;
    }

Which doesn’t feel clean, but is the best option i have found so far. This works and my app works as desired, and is testable with control inverted.

However, with my VM bound to my view like this:

 <UserControl.DataContext>
            <ViewModel:UserViewModel />
 </UserControl.DataContext>

In my XAML page attributes, design mode in both VS2010 and Blend doesnt work.

Is there are nicer way to achieve what im trying in Silverlight that still works with design mode? Losing design mode isnt a deal breaker but will be handy while learning XAML. A cleaner none chained way would be nice though!

Im thinking it maybe possible to use AutoFac / IoC to resolve viewmodels to views, as apposed to the XAML mark-up approach above, and go down this route?

Thanks.

  • 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-17T21:20:14+00:00Added an answer on May 17, 2026 at 9:20 pm

    Instead of implementing the first constructor, I suggest you implement a ViewModelLocator, like this:

    public class ViewModelLocator
    {
    
        IoCContainer Container { get; set; }
    
        public IUserViewModel UserViewModel
        {
            get
            {
                return IoCContainer.Resolve<IUserViewModel>();
            }
        }
    
    }
    

    Then in XAML you declare the locator as a static resource:

    <local:ViewModelLocator x:Key="ViewModelLocator"/>
    

    While you initialize your application, it is necessary to provide the locator with the instance of the container:

    var viewModelLocator = Application.Current.Resources["ViewModelLocator"] as ViewModelLocator;
    if(viewModelLocator == null) { // throw exception here }
    viewModelLocator.Container = IoCContainer;
    

    Then in XAML you can use the resource cleanly:

    <UserControl
        DataContext="{Binding Path=UserViewModel, Source={StaticResource ViewModelLocator}}"
        />
        <!-- The other user control properties -->
    

    For design time, you can implement a MockViewModelLocator:

    public class MockViewModelLocator
    {
    
        public IUserViewModel UserViewModel
        {
            get
            {
                return new MockUserViewModel();
            }
        }
    
    }
    

    Declare it in XAML appropriately:

    <local:MockViewModelLocator x:Key="MockViewModelLocator"/>
    

    And finally use it in your user control:

    <UserControl
        d:DataContext="{Binding Path=UserViewModel, Source={StaticResource MockViewModelLocator}}"
        DataContext="{Binding Path=UserViewModel, Source={StaticResource ViewModelLocator}}"
        />
        <!-- The other user control properties -->
    

    You can make your mock view model locator return safe and easily readable data for Blend to use and during runtime you will be using your real service.

    This way you do not lose design time data and you do not have to sacrifice the cleanliness of the dependency injection methodology in your view models.

    I hope this helps.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying get values from a GridView using the following code: foreach (GridViewRow row
Trying to get this example working from http://www.munna.shatkotha.com/blog/post/2008/10/26/Light-box-effect-with-WPF.aspx However, I can't seem to get
Im super new to programming and trying to get to grips with rails, I'm
Trying to get a simple string replace to work using a Groovy script. Tried
Trying to get my css / C# functions to look like this: body {
Trying to get an ASP application deployed; it worked for a while but then
Whilst trying to get our app working in Firefox (I'm a big proponent of
Im trying to get into some basic JavaFX game development and I'm getting confused
Just trying to get my head around Generics by reading this enlightening article by
Im trying to get a completly data copy from a gridview, itryed clone(), tryed

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.