• 大小: 1.98MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-11-10
  • 语言: C#
  • 标签: c#  webbrower  html  

资源简介

使用的是c#中webbrower控件做界面,html编写的界面,实现了c#和html的交互

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Runtime.InteropServices;
using System.Security.Permissions;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;


namespace html
{
     [System.Runtime.InteropServices.ComVisibleAttribute(true)]
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
            this.myWebBrowser1.objectForscripting = this;// 将当前类设置为可由脚本访问 
            //拖动控件
            this.moveContron1.MoveEvent();
        }

        private void button1_Click(object sender EventArgs e)
        {
             object[] objects = new object[1];  
            objects[0] = “C#访问javascript脚本“; 
            this.myWebBrowser1.Document.Invokescript(“test“ objects); 
        }

        public void MyMessageBox(string message)
        {
            
            MessageBox.Show(message);
        }

        private void myWebBrowser1_DocumentCompleted(object sender WebBrowserDocumentCompletedEventArgs e)
        {

        }

         //关闭窗口
        public void closeWindow()
        {
            //if (MessageBox.Show(“你确定要关闭吗?“ “提示“ MessageBoxButtons.YesNo) == DialogResult.Yes)
            //{
                Close();
            //}
        }

        #region 窗体移动
        public void winmove()
        {
            this.moveContron1.WinApiMoveEvent();
        }

        #endregion
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2016-06-14 22:30  html\
     文件         187  2016-05-28 11:30  html\App.config
     文件        2672  2016-06-15 13:55  html\Form1.Designer.cs
     文件        1647  2016-06-15 13:55  html\Form1.cs
     文件        6017  2016-06-15 13:55  html\Form1.resx
     文件        1045  2016-06-14 15:05  html\MoveContron.Designer.cs
     文件        4390  2016-06-14 15:05  html\MoveContron.cs
     文件         667  2016-06-13 22:58  html\MyWebBrowser.cs
     文件         516  2016-05-28 11:30  html\Program.cs
     目录           0  2016-05-28 11:30  html\Properties\
     文件        1346  2016-05-28 11:30  html\Properties\AssemblyInfo.cs
     文件        2860  2016-05-28 11:30  html\Properties\Resources.Designer.cs
     文件        5612  2016-05-28 11:30  html\Properties\Resources.resx
     文件        1091  2016-05-28 11:30  html\Properties\Settings.Designer.cs
     文件         249  2016-05-28 11:30  html\Properties\Settings.settings
     目录           0  2016-06-13 22:48  html\bin\
     目录           0  2016-06-13 23:17  html\bin\Debug\
     文件        1465  2016-05-28 11:33  html\bin\Debug\1.html
     文件     1279544  2014-11-15 02:27  html\bin\Debug\halcondotnet.dll
     文件     4074746  2014-11-15 01:07  html\bin\Debug\halcondotnet.xml
     文件       12288  2016-06-15 13:55  html\bin\Debug\html.exe
     文件         187  2016-05-28 11:30  html\bin\Debug\html.exe.config
     文件       36352  2016-06-15 13:55  html\bin\Debug\html.pdb
     文件       22984  2016-06-15 17:04  html\bin\Debug\html.vshost.exe
     文件         187  2016-05-28 11:30  html\bin\Debug\html.vshost.exe.config
     文件         490  2010-03-17 22:39  html\bin\Debug\html.vshost.exe.manifest
     目录           0  2016-06-15 17:09  html\bin\Release\
     文件       92477  2016-06-14 23:07  html\html.csproj
     目录           0  2016-06-14 22:30  html\jquery-easyui-1.4.5\
     目录           0  2016-06-14 22:30  html\jquery-easyui-1.4.5\demo\
     目录           0  2016-06-14 22:30  html\jquery-easyui-1.4.5\demo\accordion\
............此处省略1199个文件信息

评论

共有 条评论