我在IE中使用WinForms
控件。类似的东西:
var MyControl = new ActiveXObject("MyComponent.MyControl")
我希望能够为MyControl使用原型功能:
MyControl.prototype.newFunc = function(){
alert('hi there');
}
有可能吗?我想过System.Runtime.InteropServices.Expando
,但我找不到任何关于它的全面文档。
答案 0 :(得分:0)
我认为没有任何方法可以修改ActiveX对象的原型,因为它们不会从本机js Object继承,因此没有原型。