Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はいくつかのカスタム WPF を持っていUserControlます。
UserControl
そして、このような実装があります
public partial class CustomControl : UserControl, IMyPluginInterface
他のアプリケーションでその UserControl のタイプを取得するにはどうすればよいですか?
または、アセンブリで型を列挙する方法は?
ありがとうございました!
これを試して:
Type myType = myCustomUserControl.GetType();