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
}
}
}
Stack Overflow is a collaboratively edited question and answer site for programmers – regardless of platform or language. It's 100% free, no registration required.