vote up 3 vote down star
2

In Winforms you can say

if ( DesignMode )
{
  // Do something that only happens on Design mode
}

is there something like this in WPF?

flag

1 Answer

vote up 4 vote down check

Indeed there is:
System.ComponentModel.DesignerProperties.GetIsInDesignMode(System.Windows.DependencyObject element)
Here you can find the MSDN documentation about this method.

Example:

using System.Windows;
using System.Windows.Controls;

public class MyUserControl : UserControl
{
    public MyUserControl()
    {
        if (DesignerProperties.GetIsInDesignMode(this))
        {
            // Design-mode specific functionality
        }
    }
}
link|flag

Your Answer

Get an OpenID
or

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