webbrowser控件事件
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控件事件的更多相关文章
- 【WPF】监听WPF的WebBrowser控件弹出新窗口的事件
		原文:[WPF]监听WPF的WebBrowser控件弹出新窗口的事件 WPF中自带一个WebBrowser控件,当我们使用它打开一个网页,例如百度,然后点击它其中的链接时,如果这个链接是会弹出一个新窗 ... 
- 谨慎注意WebBrowser控件的DocumentCompleted事件
		引言 WebBrowser控件的DocumentCompleted事件一般就被认定为是在页面完全加载完毕后产生,而注释中也是这么写的: 但事实却并非如此. 首先它不一定会在完全加载完毕时才触发,有时就 ... 
- C#中的WebBrowser控件的使用
		0.常用方法 Navigate(string urlString):浏览urlString表示的网址 Navigate(System.Uri url):浏览url表示的网址 Navigate(st ... 
- <总结>delphi WebBrowser控件的使用中出现的bug
		Delphi WebBrowser控件的使用中出现的bug: 1.WebBrowser.Visible=false:Visible属性不能使WebBrowser控件不可见,暂时用 WebBrowse ... 
- C# WebBrowser控件使用教程与技巧收集
		常用的方法 Navigate(string urlString):浏览urlString表示的网址 Navigate(System.Uri url):浏览url表示的网址 Navigate(strin ... 
- C# webBrowser控件使用
		C# webBrowser控件使用心得 最近用到WebBrowser控件,遇到很多问题,也学习了不少新的东西.下面是我在C#下写的关于WebBrowser控件使用的代码. 1.WebBrowser常用 ... 
- WebBrowser控件打开https站点
		背景: 与上一篇博文一样,此文亦是由于开发DropboxAPI中遇到问题衍生出来的.由于需要重定向https类型网站,但自己的https证书是自签名的,总是提示'网站的安全证书存在问题'. 鉴此,查了 ... 
- C#WebBrowser控件使用教程与技巧收集--苏飞收集
		C#WebBrowser控件使用教程与技巧收集--苏飞收集 先来看看常用的方法 Navigate(string urlString):浏览urlString表示的网址 Navigate(System. ... 
- Webbrowser控件判断网页加载完毕的简单方法 (转)
		摘自:http://blog.csdn.net/cometnet/article/details/5261192 一般情况下,当ReadyState属性变成READYSTATE_COMPLETE时,W ... 
随机推荐
- 代码:Masonry 第三方框架
			必备宏使用前提: //define this constant if you want to use Masonry without the 'mas_' prefix #define MAS_SHO ... 
- UVA 11384 Help is needed for Dexter(问题转化 递归)
			Help is needed for Dexter Time Limit: 3 Second Dexter is tired of Dee Dee. So he decided to keep Dee ... 
- [工具]toolbox_graph基本操作
			toolbox_graph提供了对3D模型的一些操作.MATLAB代码源自:http://www.mathworks.com/matlabcentral/fileexchange/5355-toolb ... 
- java.util.Dictionary源码分析
			Dictionary是一个抽象类,Hashtable是它的一个子类. 类的声明:/** The <code>Dictionary</code> class is the abs ... 
- 动态改变EasyUI grid 列宽和隐藏列
			隐藏显示 $('#yourGrid').datagrid('hideColumn','yourColumn'); $('#yourGrid').datagrid('hideColumn','yourC ... 
- EF初始化mysql数据库codefirst
			EF使用Code First修改生成数据库表名的方法 1. 重写OnModelCreating,去掉表名复数 System.Data.Entity.ModelConfiguration.Convent ... 
- ci验证码
			ci 之验证码 为了方便,把 system/system/helpers/captcha_helper.php复制放在 application/helpers/文件夹里面 手册上面推荐用数据库,但个人 ... 
- datatable的数据转置
			没有具体测试过,5w条数据在i5机器上大概是1.3~2s左右,但是个人感觉就是在处理数据库的分页或者是写条件的时候会有一些麻烦,不如使用数据库分页! 但是这种方法不失为一种思路 private voi ... 
- hbuilder工具快捷键 http://www.qq210.com/shoutu/android
			http://www.qq210.com/shoutu/android 创建HTML结构: h 8 (敲h激活代码块列表,按8选择第8个项目,即HTML代码块,或者敲h t Enter)中途换行: ' ... 
- php设计模式笔记:单例模式
			php设计模式笔记:单例模式 意图: 保证一个类仅有一个实例,并且提供一个全局访问点 单例模式有三个特点: 1.一个类只有一个实例2.它必须自行创建这个实例3.必须自行向整个系统提供这个实例 主要实现 ... 
