温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

UMPLatForm.NET 中MiNiWeb浏览器核心技术详解二(接上篇)

发布时间:2020-06-25 14:12:03 来源:网络 阅读:474 作者:umplatform 栏目:编程语言

   UMPLatForm.NET MiNiWeb浏览器核心技术详解二

 

接上一篇:UMPLatForm.NET 中MiNiWeb浏览器核心技术详解一

 

3、创建webbrowser扩展组件

      从上一节中,我们可以发现上述的所有内容都基本可以归结为两件事:

1.       实现一个iwebbrowser2类型的对象,从中获得application属性

2.       实现dwebbrowserevents2接口来触发事件

 实现iwebbrowser2接口

  1. using System; 
  2. using System.Security; 
  3. using System.Runtime.InteropServices; 
  4. using System.Windows.Forms; 
  5. using System.Security.Permissions; 
  6.  
  7. namespace MiniBrowser 
  8.     /// <summary> 
  9.     /// An extended version of the <see cref="WebBrowser"/> control. 
  10.     /// </summary> 
  11.     class ExtendedWebBrowser : System.Windows.Forms.WebBrowser 
  12.     { 
  13.         private UnsafeNativeMethods.IWebBrowser2 axIWebBrowser2; 
  14.  
  15.         /// <summary> 
  16.         /// This method supports the .NET Framework infrastructure and is not intended to be used directly from your code. 
  17.         /// Called by the control when the underlying ActiveX control is created. 
  18.         /// </summary> 
  19.         /// <param name="nativeActiveXObject"></param> 
  20.         [PermissionSet(SecurityAction.LinkDemand, Name = "FullTrust")] 
  21.         protected override void AttachInterfaces(objectnativeActiveXObject) 
  22.         { 
  23.             this.axIWebBrowser2 = (UnsafeNativeMethods.IWebBrowser2)nativeActiveXObject; 
  24.             base.AttachInterfaces(nativeActiveXObject); 
  25.         } 
  26.  
  27.         /// <summary> 
  28.         /// This method supports the .NET Framework infrastructure and is not intended to be used directly from your code. 
  29.         /// Called by the control when the underlying ActiveX control is discarded. 
  30.         /// </summary> 
  31.         [PermissionSet(SecurityAction.LinkDemand, Name = "FullTrust")] 
  32.         protected override void DetachInterfaces() 
  33.         { 
  34.             this.axIWebBrowser2 = null
  35.             base.DetachInterfaces(); 
  36.         } 
  37.  
  38.         /// <summary> 
  39.         /// Returns the automation object for the web browser 
  40.         /// </summary> 
  41.         public object Application 
  42.         { 
  43.             get { return axIWebBrowser2.Application; } 
  44.         } 
  45.  
  46.         System.Windows.Forms.AxHost.ConnectionPointCookie cookie; 
  47.         WebBrowserExtendedEvents events; 
  48.  
  49.         /// <summary> 
  50.         /// This method will be called to give you a chance to create your own event sink 
  51.         /// </summary> 
  52.         [PermissionSet(SecurityAction.LinkDemand, Name = "FullTrust")] 
  53.         protected override void CreateSink() 
  54.         { 
  55.             // Make sure to call the base class or the normal events won't fire 
  56.             base.CreateSink(); 
  57.             events = new WebBrowserExtendedEvents(this); 
  58.             cookie = newAxHost.ConnectionPointCookie(this.ActiveXInstance, events,typeof(UnsafeNativeMethods.DWebBrowserEvents2)); 
  59.         } 
  60.  
  61.         /// <summary> 
  62.         /// Detaches the event sink 
  63.         /// </summary> 
  64.         [PermissionSet(SecurityAction.LinkDemand, Name = "FullTrust")] 
  65.         protected override void DetachSink() 
  66.         { 
  67.             if (null != cookie) 
  68.             { 
  69.                 cookie.Disconnect(); 
  70.                 cookie = null
  71.             } 
  72.         } 
  73.  
  74.         /// <summary> 
  75.         /// Fires when downloading of a document begins 
  76.         /// </summary> 
  77.         public event EventHandler Downloading; 
  78.  
  79.         /// <summary> 
  80.         /// Raises the <see cref="Downloading"/> event 
  81.         /// </summary> 
  82.         /// <param name="e">Empty <see cref="EventArgs"/></param> 
  83.         /// <remarks> 
  84.         /// You could start an animation or a notification that downloading is starting 
  85.         /// </remarks> 
  86.         protected void OnDownloading(EventArgs e) 
  87.         { 
  88.             if (Downloading != null
  89.                 Downloading(this, e); 
  90.         } 
  91.  
  92.         /// <summary> 
  93.         /// Fires when downloading is completed 
  94.         /// </summary> 
  95.         /// <remarks> 
  96.         /// Here you could start monitoring for script errors. 
  97.         /// </remarks> 
  98.         public event EventHandler DownloadComplete; 
  99.  
  100.         /// <summary> 
  101.         /// Raises the <see cref="DownloadComplete"/> event 
  102.         /// </summary> 
  103.         /// <param name="e">Empty <see cref="EventArgs"/></param> 
  104.         protected virtual void OnDownloadComplete(EventArgs e) 
  105.         { 
  106.             if (DownloadComplete != null
  107.                 DownloadComplete(this, e); 
  108.         } 
  109.        …… 
  110.     } 


webbrowser控件有两个尚未公开的接口:attachinterfaces()detachinterfaces()。这些方法用于获得iwebbrowser2接口的引用。 

下一步,我们可以添加application属性。

    

  1. /// <summary> 
  2. /// Returns the automation object for the web browser 
  3. /// </summary> 
  4. public object Application 
  5.     get { return axIWebBrowser2.Application; } 

       这个属性可以用来创建一个新窗口,并且当创建新窗口事件触发时将浏览器重定向到这个新窗口。  

 



作者: Edward  
出处: 
http://umplatform.blog.51cto.com/

微博: 腾讯

Email: umplatform@126.com或 406590790@qq.com

QQ 交流:406590790 (请注明:平台交流)

QQ×××流:16653241  237326100
关于作者:高级工程师、信息系统项目管理师、数据库系统工程师。专注于微软平台项目架构、管理和企业解决方案,多年项目开发与管理经验,曾多次组织并开发多个大型项目,精通DotNet(C#Asp.NETADO.NETWeb ServiceWCF)DB原理与技术、SqlServerOracle等。熟悉JavaDelhpiLinux操作系统,有扎实的网络知识。自认在面向对象、面向服务以及数据库领域有一定的造诣。现主要从事DB管理、DB开发、WinFormWCFWebService、网页数据抓取以及ASP.NET等项目管理、开发、架构等工作。如有问题或建议,请多多赐教!
本文版权归作者和51CTO博客共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,如有问题,可以通过邮箱或QQ
 联系我,非常感谢。

 

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI