我需要在 C# winforms 宿主项目的运行时从 DLL 动态加载一些 .NET 控件。
例如:
1.dll约束control1
2.dll约束control2
3.dll约束control3
主机应用程序可以加载任何此 dll-s,从 dll 获取控件并将其置于自身形式。
我试过:
__declspec(dllexport) TestCLRPlugin::Properties ^ GetControl()
{
return gcnew TestCLRPlugin::Properties();
}
但是,clrcall 方法不能从 dll 中导出。