Beforenavigate2: Fired before navigate occurs in the given WebBrowser(window or frameset element). The processing of this 
navigation may be modified. (这个事件发生一个给定的浏览器即将导航到一个URL前,这个导航的过程可能会被修改.)

ClientToHostWindow:   Fired to request client sizes be converted to host  window sizes
 (当控件用宿主窗体的客户区尺寸来改变自己的客户区时,会触发这个事件)
CommandStateChange:  The endabled state of a command changed (一个可能的命令状态改变时)
DocumentComplete: Fired when the document being navigated to reaches ReadyState_Complete.
 (当一个文档已经导航到了一个URL时会触发这个事件)
DownLoadBegin: Download of a page started. ( 开始下载一个网页)
DownLoadComplete: Download of page complete.( 结束下载一个网页)

FileDownload: Fired to indicate the File Download dialog is opening. 
 (当【文件下载对话框】正在打开时会发送这个消息。)
NavigateComplete2: Fired when the document being navigated to becomes visible and enters the navigation stack.
 (当文档已经导航到了,并且放到了历史记录堆栈时面时,会发生这个消息。)
 
NavigateError: Fired when a binding error occurs(window or frameset element).
 (当导航发生错误时,会触发这个事件)

NewWindow2: A new, hidden, non-navigated WebBrowser window is needed.
 (一个新的,隐藏,没有导航过的WebBrowser窗体被需要)
NewWindow3: A new, hidden, non-navigated WebBrowser window is needed.
 (一个新的,隐藏,没有导航过的WebBrowser窗体被需要)
OnFullScreen: Fired when fullscreen mode should be on/off ( 指示全屏模式是否被选用)
OnMenuBar: Fired when the menubar should be shown/hide.( 指示菜单栏是否隐藏)
OnQuit: Fired when application is quiting.( 当应用程序退出时,触发这个事件)

OnStatusBar: Fired when the statusbar should be shown/hide.( 指示状态栏是否隐藏)

OnTheaterMode: Fired when theater mode should be on/off. ( 指示剧场模式是否选用)

OnToolBar: Fired when toolbar should be shown/hide. ( 指示工具栏是否隐藏)

OnVisible: Fired when the window should be shown/hide. ( 指示窗体是否隐藏 )

PrintTemplateInstantiation:  Fired when a print template is instantiated.( 指示一个打印模块被初始化好了)

PrintTemplateTeardown: Fired when a print template destroyed.  (指示一个打印模块被销毁了)

PrivacyImpactedStateChange: Fired when the global privacy impacted state changes.
 (指示一个全局私有的状态改变了)
ProgressChange: Fired when download progress is updated. ( 指示下载进度更新)
PropertyChange:  Fired when the PutProperty method has been called. ( 当PutProperty方法被调用)
SetSecureLockIcon: Fired to indicate the security level of the current web page contents.
 (指示当前网页内容的安全级别)

StatusTextChange:  Status text changed. ( 当状态栏文字改变时,触发这个事件)
TitleChange: Document title changed. ( 文档标题改变时)

UpdatePageStatus: Fired when a page is spooled, When it is fired can be changed by a custom template.
 (当一个网页假脱机,当一个用户模板改变)
WindowClosing: Fired when the WebBrowser is about to closed by script.
( 当WebBrowser即将被脚本关闭)

WindowSetHeight:  Fired when the host window should change its height.
 (当宿主窗体改变它的高度)
WindowSetLeft:
 Fired when the host window should change its left coordinate. ( 当宿主窗体改变它的左坐标)

WindowSetResizable: Fired when the host window should allow/disallow resizing. ( 当宿主窗体改变它的尺寸)

WindowSetTop: Fired when the host window should change its Top coordinate.
 (当宿主窗体改变它的顶坐标)

WindowSetWidth: Fired when the host window should change its width. ( 当宿主窗体改变它的宽度)

webbrowser控件事件的更多相关文章

  1. 【WPF】监听WPF的WebBrowser控件弹出新窗口的事件

    原文:[WPF]监听WPF的WebBrowser控件弹出新窗口的事件 WPF中自带一个WebBrowser控件,当我们使用它打开一个网页,例如百度,然后点击它其中的链接时,如果这个链接是会弹出一个新窗 ...

  2. 谨慎注意WebBrowser控件的DocumentCompleted事件

    引言 WebBrowser控件的DocumentCompleted事件一般就被认定为是在页面完全加载完毕后产生,而注释中也是这么写的: 但事实却并非如此. 首先它不一定会在完全加载完毕时才触发,有时就 ...

  3. C#中的WebBrowser控件的使用

    0.常用方法   Navigate(string urlString):浏览urlString表示的网址 Navigate(System.Uri url):浏览url表示的网址 Navigate(st ...

  4. <总结>delphi WebBrowser控件的使用中出现的bug

    Delphi WebBrowser控件的使用中出现的bug:  1.WebBrowser.Visible=false:Visible属性不能使WebBrowser控件不可见,暂时用 WebBrowse ...

  5. C# WebBrowser控件使用教程与技巧收集

    常用的方法 Navigate(string urlString):浏览urlString表示的网址 Navigate(System.Uri url):浏览url表示的网址 Navigate(strin ...

  6. C# webBrowser控件使用

    C# webBrowser控件使用心得 最近用到WebBrowser控件,遇到很多问题,也学习了不少新的东西.下面是我在C#下写的关于WebBrowser控件使用的代码. 1.WebBrowser常用 ...

  7. WebBrowser控件打开https站点

    背景: 与上一篇博文一样,此文亦是由于开发DropboxAPI中遇到问题衍生出来的.由于需要重定向https类型网站,但自己的https证书是自签名的,总是提示'网站的安全证书存在问题'. 鉴此,查了 ...

  8. C#WebBrowser控件使用教程与技巧收集--苏飞收集

    C#WebBrowser控件使用教程与技巧收集--苏飞收集 先来看看常用的方法 Navigate(string urlString):浏览urlString表示的网址 Navigate(System. ...

  9. Webbrowser控件判断网页加载完毕的简单方法 (转)

    摘自:http://blog.csdn.net/cometnet/article/details/5261192 一般情况下,当ReadyState属性变成READYSTATE_COMPLETE时,W ...

随机推荐

  1. PHP学习笔记(七)

    <wordpress 50个过滤钩子> 11-20 11.gettext: 过滤wordpress的翻译数据. 在wordpress中,使用__(), _e(), _x(), _ex(), ...

  2. jquery 文本框失去焦点显示提示信息&&单击置空文本框

    1.<textarea rows="4" placeholder="请输入提醒内容"></textarea> 2. /** * @par ...

  3. 获取元素样式 currentStyle 和 getcomputedStyle

    场景 你要获取某一元素的样式,可是没有获取到,返回的值为undefined,可是有时候又能成功? 为什么? 因为,xx.stly.xxx 可以获取的样式信息,是dom元素style属性里的样式,对于通 ...

  4. c#根据文件大小显示文件复制进度条实例

    using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; usin ...

  5. Nginx常用伪静态规则(rewrite)-Discuz X3.2-WordPress-PHPCMS-ECSHOP-SHOPE(转)

    当我们从apache服务器转向Nginx服务器的时候,它们的伪静态规则就不一样了,所以你熟悉Nginx服务器的伪静态规则,自己写当然也好.不了解Nginx服务器的伪静态规则的,为方便各位站长,收集了这 ...

  6. 初学JqueryMobile(一)

    一.初学2个data标签 标签名称 标签属性 属性说明 备注 data-role page 容器或试图 表示容器的作用 header 标题 content 内容 footer 页脚 data-tran ...

  7. 做个无边框winform窗体,并美化界面

    今天下午程序写完,有些时间就搞下界面美化,做个无框窗体.首先把窗体的FormBorderStyle设置为None,就变成无框的啦,不过你会发现这样窗体上就没有原来的最大最小化和关闭按钮了哦,所以要自己 ...

  8. HTML5列表

    <!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content ...

  9. 网站加载有商务通、商桥,定义js函数触发快商通代码

    有的网站已经加载了商务通.商桥的,前期定义了js函数 触发商务通.商桥代码的,可以重新定义新的函数对之前的函数进行覆盖,其 js代码为: var domain = document.domain; / ...

  10. 自己编写的sublime text 3 插件

    一些小功能,比较杂. 具体的功能在这里查看 1.本地环境的php运行结果获取. 2.快捷打开常用的文件,文件夹,url.(ctrl+shift+a) 3.常用的缩进转换. 下边是网络爬虫代码. #py ...