-
大小: 0.20M文件類型: .rar金幣: 1下載: 0 次發布日期: 2020-12-26
- 語言: C#
- 標簽: winform??WebBrowser??
資源簡介
本文旨在演示WebBrowser控件上的代碼(Javascript、Html Dom)與Winform控件本身的交互,實現在WebBrowser的C/S程序中調用其網頁上的Javascript函數,甚至反過來在網頁的Javascript代碼中調用C/S程序中的方法。
以下示例點到為止,比如“B/S Dom對象的事件”示例中,除了用onchange/onpropertychange之外,其他任何支持的html事件均能使用,如onclick、onkeydown等等。 例子中沒有詳細列出可以應用的方式和使用范圍,但我們加以思考,觸類旁通,可以實現很多很多功能的。
代碼片段和文件信息
using?System;
using?System.Collections.Generic;
using?System.ComponentModel;
using?System.Data;
using?System.Drawing;
using?System.Text;
using?System.Windows.Forms;
using?System.IO;
using?System.Security.Permissions;
using?System.Runtime.InteropServices;
using?System.Reflection;
namespace?Communicate_With_WebBrowser
{
????//
????//?說明:http://udnz.com/Article/Invoke_javascript_On_Webbrowser_In_Winform.aspx
????//?更多作品請見:http://udnz.com/Works/
????//
????//?有用的鏈接
????//?ms-help://MS.MSDNQTR.v90.chs/iesecurity/workshop/security/szone/reference/functions/cointernetsetfeatureenabled.htm
????//?ms-help://MS.MSDNQTR.v90.chs/iesecurity/workshop/security/szone/reference/enums/internetfeaturelist.htm
????//?http://blog.csdn.net/jiangsheng/archive/2004/11/07/170742.aspx
????//?
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
????.CA....??????1220??2010-05-29?23:20??Communicate?With?WebBrowser.sln
????.CA..H.?????36352??2010-05-30?00:46??Communicate?With?WebBrowser.suo
????.CA....??????9075??2010-05-30?12:40??Default.htm
????.CA....?????77523??2005-09-05?21:57??flash.swf
????.CA....???????160??2010-05-30?12:47??基于IE內核的瀏覽器:WebBrowser上的網頁與Winform本身交互.url
????.CA....?????25600??2010-05-30?12:44??Communicate?With?WebBrowser\bin\Debug\Communicate?With?WebBrowser.exe
????.CA....?????38400??2010-05-30?12:44??Communicate?With?WebBrowser\bin\Debug\Communicate?With?WebBrowser.pdb
????.CA....?????14328??2010-05-30?12:44??Communicate?With?WebBrowser\bin\Debug\Communicate?With?WebBrowser.vshost.exe
????.CA....???????490??2009-06-11?05:14??Communicate?With?WebBrowser\bin\Debug\Communicate?With?WebBrowser.vshost.exe.manifest
????.CA....??????9075??2010-05-30?12:40??Communicate?With?WebBrowser\bin\Debug\Default.htm
????.CA....?????77523??2005-09-05?21:57??Communicate?With?WebBrowser\bin\Debug\flash.swf
????.CA....??????3714??2010-05-30?12:39??Communicate?With?WebBrowser\Communicate?With?WebBrowser.csproj
????.CA....?????10011??2010-05-30?12:44??Communicate?With?WebBrowser\FDemo.cs
????.CA....?????30138??2010-05-30?12:44??Communicate?With?WebBrowser\FDemo.Designer.cs
????.CA....??????6206??2010-05-30?12:44??Communicate?With?WebBrowser\FDemo.resx
????.CA....??????2175??2010-05-30?12:37??Communicate?With?WebBrowser\IOleCommandTarget.cs
????.CA....??????1912??2010-05-30?12:44??Communicate?With?WebBrowser\obj\Debug\Communicate?With?WebBrowser.csproj.FileListAbsolute.txt
????.CA....???????847??2010-05-30?12:44??Communicate?With?WebBrowser\obj\Debug\Communicate?With?WebBrowser.csproj.GenerateResource.Cache
????.CA....?????25600??2010-05-30?12:44??Communicate?With?WebBrowser\obj\Debug\Communicate?With?WebBrowser.exe
????.CA....?????38400??2010-05-30?12:44??Communicate?With?WebBrowser\obj\Debug\Communicate?With?WebBrowser.pdb
????.CA....???????180??2010-05-30?12:44??Communicate?With?WebBrowser\obj\Debug\Communicate_With_WebBrowser.FDemo.resources
????.CA....???????180??2010-05-30?12:39??Communicate?With?WebBrowser\obj\Debug\Communicate_With_WebBrowser.Properties.Resources.resources
????.CA....??????2957??2010-05-30?02:22??Communicate?With?WebBrowser\Program.cs
????.CA....??????1394??2010-05-27?15:50??Communicate?With?WebBrowser\Properties\AssemblyInfo.cs
????.CA....??????2904??2010-05-27?15:50??Communicate?With?WebBrowser\Properties\Resources.Designer.cs
????.CA....??????5612??2010-05-27?15:50??Communicate?With?WebBrowser\Properties\Resources.resx
????.CA....??????1112??2010-05-27?15:50??Communicate?With?WebBrowser\Properties\Settings.Designer.cs
????.CA....???????249??2010-05-27?15:50??Communicate?With?WebBrowser\Properties\Settings.settings
????.C.D...?????????0??2010-05-27?15:52??Communicate?With?WebBrowser\obj\Debug\Refactor
????.C.D...?????????0??2010-05-27?15:50??Communicate?With?WebBrowser\obj\Debug\TempPE
............此處省略9個文件信息
評論
共有 條評論