Does anyone know of some global state variable that is available so that I can check if the code is currently executing in design mode (e.g. in Blend or Visual Studio) or not?

It would look something like this:

//pseudo code:
if (Application.Current.ExecutingStatus == ExecutingStatus.DesignMode) 
{
    ...
}

The reason I need this is: when my application is being shown in design mode in Expression Blend, I want the ViewModel to instead use a "Design Customer class" which has mock data in it that the designer can view in design mode.

However, when the application is actually executing, I of course want the ViewModel to use the real Customer class which returns real data.

Currently I solve this by having the designer, before he works on it, go into the ViewModel and change "ApplicationDevelopmentMode.Executing" to "ApplicationDevelopmentMode.Designing":

public CustomersViewModel()
{
    _currentApplicationDevelopmentMode = ApplicationDevelopmentMode.Designing;
}

public ObservableCollection<Customer> GetAll
{
    get
    {
        try
        {
            if (_currentApplicationDevelopmentMode == ApplicationDevelopmentMode.Developing)
            {
                return Customer.GetAll;
            }
            else
            {
                return CustomerDesign.GetAll;
            }
        }
        catch (Exception ex)
        {
            throw new Exception(ex.Message);
        }
    }
}
link|improve this question

80% accept rate
feedback

3 Answers

up vote 42 down vote accepted

I believe you are looking for GetIsInDesignMode, which takes a DependencyObject.

Ie.

// 'this' is your UI element
DesignerProperties.GetIsInDesignMode(this);

Edit: When using Silverlight / WP7, you should use IsInDesignTool since GetIsInDesignMode can sometimes return false while in Visual Studio:

DesignerProperties.IsInDesignTool
link|improve this answer
1  
100% what I was looking for, thanks! – Edward Tanguay May 7 '09 at 13:02
And, once again, I find myself back here. – Will Apr 28 '11 at 19:02
As a side note, IsInDesignMode is actually an attached property, so you can use it in a binding from xaml as well. Might not be the most common use though :) – aL3891 May 23 '11 at 13:10
feedback

You can do something like this:

DesignerProperties.GetIsInDesignMode(new DependencyObject());
link|improve this answer
works as well, thanks, just less terse – Edward Tanguay May 7 '09 at 13:44
3  
This method also works for making ViewModels designer-friendly (since they are not DependencyObjects themselves). – Pat Jun 20 '11 at 23:04
DependencyObject has a protected constructor - define internal class MyDependencyObject : DependencyObject {} and use new MyDependencyObject instead of DependencyObject – Rico Suter Sep 14 '11 at 21:15
feedback

I have found you can do this in c#

 if (!DesignMode)
        MyParent.CheckForNewUpdate();

This works in visual studio, not sure about expression blend, but suspect it might as its a standard test in lots of Microsoft examples in using visual studio testing and debugging.

Anyways, hope it helps.

link|improve this answer
Are you sure this doesn't come from a toolkit or something? It seems to be a property of your ViewModel base class. – SandRock Jul 8 '11 at 12:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.