2

我创建了一个具有设计时支持的自定义用户控件,如下所示:

项目/程序集“MyUserControl”

  • 我的用户控件.cs
  • MyUserControlDesigner.cs

代码是这样的:

namespace MyUserControl
{
  [Designer("MyUserControl.Design.MyUserControlDesigner, MyUserControl", typeof(IDesigner))]
  public class MyUserControl : Control
  {
    // Some stuff here
  }
}

namespace MyUserControl.Design
{
  public class MyUserControlDesigner : ControlDesigner
  {
    // Some other stuff here
  }
}

只要这两个类在同一个程序集中,一切正常。VS2012 显示了我所有的设计器选项。但出于明显的原因(对 System.Design 和其他的引用),我不想在 MyUserControl 程序集中,而是在 MyUserControl.Design 中使用设计器代码。所以我在同一个解决方案中创建了第二个项目:

项目/程序集“MyUserControl”

  • 我的用户控件.cs

项目/程序集“MyUserControl.Design”

  • MyUserControlDesigner.cs

代码是这样的:

namespace MyUserControl
{
  [Designer("MyUserControl.Design.MyUserControlDesigner, MyUserControl.Design", typeof(IDesigner))]
  public class MyUserControl : Control
  {
    // Some stuff here
  }
}

使用这个的时候,根本找不到设计师。VS2012 不显示可在线选择的组件,而是显示没有附加设计器的组件。

我是否必须将我的设计器程序集添加到 GAC 才能让 VS2012 找到它,或者这里有什么问题?

编辑:向 WindowsFormsApplication1 添加对 MyUserControl.Design 的引用时一切正常,但这正是您不想要的......

4

2 回答 2

0

您将需要创建MyUserControlDesigner一个公共课程。

于 2012-09-04T13:49:14.980 回答
0

我遇到了完全相同的问题。只有当我通过以下方式指定设计器类时,它才开始为我工作。

namespace MyUserControl
{
  [Designer("MyUserControl.Design.MyUserControlDesigner, MyUserControl.Design,  Version=1.0.0.0, Culture=neutral, PublicKeyToken=8bc98ae14acadc09", typeof(IDesigner))]
  public class MyUserControl : Control
  {
    // Some stuff here
  }
}
于 2014-05-22T06:14:21.440 回答