将 ObjectHandle 转换为 UserControl
如何将 Remoting.ObjectHandle 转换为 UserControl 类型?
我想动态实例化一个 UserControl :
UserControl myUserControl = (UserControl)Activator.CreateInstance(Assembly.GetExecutingAssembly().FullName, "Client.IndexView");
错误:无法将“System.Runtime.Remoting.ObjectHandle”类型的表达式转换为“UserControl”
How to cast a Remoting.ObjectHandle to UserControl type ?
I would like to dynamically instanciate a UserControl :
UserControl myUserControl = (UserControl)Activator.CreateInstance(Assembly.GetExecutingAssembly().FullName, "Client.IndexView");
Error : Cannot cast expression of type 'System.Runtime.Remoting.ObjectHandle' to 'UserControl'
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用
Unwrap< /code>
方法:
What if you use the
Unwrap
method: