从另一个项目组装

时间:2018-10-23 17:57:44

标签: c# winforms

我有一个包含2个项目的解决方案

  1. Windows窗体应用程序-> WFA
  2. 用户控件库-> LUC

    解决方案  |-解决方案介绍-> WFA  | -Solution.Controls-> LUC

在LUC中,我有一个带有属性的控件,该控件必须显示宿主项目程序集(这里的问题是我不知道该怎么做)。

public class customControl : TextBox
{
   public string HostAssemblyName
   {
      get { /* HELP => should return Solution.Presentation (must be generated dynamically because the name of the project where it will be hosted is not known) */ }
   }
}

WFA项目利用LUC项目:

Solutiono
 |-Solution.Presentation
   |-References
     |-Solution.Controls

有什么想法吗? 谢谢

0 个答案:

没有答案