如何在不同的引用项目中的方法调用中获取调用类的类类型

时间:2019-01-16 19:19:00

标签: vb.net

我的解决方案称为“ PlasmaBlueTooth_Soln”,解决方案中包含许多项目。

其中一个项目称为“ PlasmaBluetooth”,其中包含许多类和一个模块,并且是该应用程序的启动项目。 (模块“ startUpModule”包含用于启动应用程序的Main子。)。
我在“ PlasmaBluetooth”中有一个MainFormTestClass类 继承了Windows窗体MainForm
我通过在MainFormTestClass中实例化一个变量在MainFormTestClass中使用的单独项目中创建了许多UserControl,作为单独项目中的userControl,然后将实例化的控件添加到MainForm窗口控件中。
UserControl项目在“ PlasmaBluetooth”项目中引用。我在PerformAction中有一个方法MainFormTestClass,该方法调用了一个方法 用户控件类中的UserControlAction,参数为Me
我想在方法中使用MainFormTestClass类型
UserControlAction(byref MeData as MainFormTestClass)但是,MainFormTestClass类型在userControl项目中未定义。

如何在UserControl项目中获取MainFormTestClass类型?

0 个答案:

没有答案