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. Objective-C 中的方法回掉

    Objective-C 中的方法回掉  Objective-C 中的方法调用 OC 类似C+,避免不了的内部的各种通信手段,函数调用,变量传递等,避免不了各种回掉等. 一.class直接调用 或者 o ...

  2. 基于注解整合struts2与spring的时候如果不引入struts2-spring-plugin包自动装配无效

    基于注解整合struts2与spring的时候如果不引入struts2-spring-plugin包,自动装配将无效,需要spring注入的对象使用时将抛出空指针异常(NullPointerExcep ...

  3. webapi之jsonp调用

    定义跨域handle public class CorsHandler : DelegatingHandler { const string Origin = "Origin"; ...

  4. redis研究之watch

    具体的看注释,代码如下: public static void TransTest() { RedisClient client1 = new RedisClient(host, port); Red ...

  5. ios 64位下编译webrtc的libvpx库出现错误Bad cputype for object file.Currently only tested for CPU_TYPE_x86_64

    diff --git a/libvpx.gyp b/libvpx.gypindex 4f8cb2b..4eb6866 100644--- a/libvpx.gyp+++ b/libvpx.gyp@@ ...

  6. IOS 学习笔记 2015-04-09 0C-SQLite 数据存储

    1 项目导入 libsqlite3.0.dylib 框架 2 在使用数据sqlite的头文件(.h)上导入 #Impourt <sqlite3.h> 3 推荐自己本地电脑下个sqlite ...

  7. ECMA5.1中Object.seal()和Object.freeze()的区别

    1  Object.seal(O)的调用 When the seal function is called, the following steps are taken:   If Type(O) i ...

  8. 一个Highcharts的例子

    关键字:Highcharts <!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Typ ...

  9. hdu 1009 贪心算法

    博主英语不好,看懂个大概,老鼠有M磅猫食.有N个房间,每个房间前有一只猫,房间里有老鼠最喜欢的食品JavaBean,J[i].若要引开猫,必须付出相应的猫食F[i]. 当然这只老鼠没必要每次都付出所有 ...

  10. vs15

    vs15 preview5 离线安装包 vs15 preview5 离线安装包   1.介绍 vs15是微软打造的新一代IDE,全新的安装方式.官网介绍如下(https://blogs.msdn.mi ...