标签: c# wpf
我有一些自定义WPF UserControl。
UserControl
它有像这样的实现
public partial class CustomControl : UserControl, IMyPluginInterface
如何在其他应用程序中获取该UserControl的类型?
或者如何枚举程序集中的类型?
谢谢!
答案 0 :(得分:2)
试试这个:
Type myType = myCustomUserControl.GetType();