wpf设计器在使用usercontrolbase时显示异常

时间:2017-12-21 10:15:32

标签: c# wpf

这是UserControlBase:

public class UserControlBase : UserControl
{
    protected Engine m_engine = null;

    public UserControlBase() : base()
    {
        m_engine = Engine.Instance();
    }               
}

所有用户控制我从这个类创建吸收

对于EccentricityUC来说,这是wpf的xaml:

<local:UserControlBase x:Class="LaboratoryView.UserControls.EccentricityUC"
         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
         xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
          xmlns:local="clr-namespace:LaboratoryView.UserControls"
         mc:Ignorable="d" 
         d:DesignHeight="300" d:DesignWidth="300">
<Grid>

</Grid></local:UserControlBase>

此xaml的cs文件:

public partial class EccentricityUC : UserControlBase
{
    public EccentricityUC()
    {
        InitializeComponent();
        this.DataContext = m_engine.GetViewModel(ViewModelTypes.Eccentricity);
    }
}

在wpf desginer中我得到一个异常&#34;无法创建&#34; UserControlBase&#34;&#34;

的实例

在内心的重复中,我得到了:&#34;没有名为&#39; LaboratoryDBEntities&#39;的连接字符串。可以在应用程序配置文件中找到&#34;  即使app.config文件包含此连接字符串(我有2个项目,它们都包含确切的连接字符串)

如果我删除usercontrolbase的吸引力,只是从usercontrol吸入 一切都再次显示出来。

我无法找到解决此问题的方法。

1 个答案:

答案 0 :(得分:0)

你需要检查设计时间模式,所以你必须编写这行代码来解决这个错误

public UserControlBase() : base()
{     
  if (!System.ComponentModel.DesignerProperties.GetIsInDesignMode(this))
  {
   m_engine = Engine.Instance();
  }
  else 
     m_engine = new Engine();  
}