C#通过html调用WinForm的方法

作者:且行且思 时间:2022-02-26 03:53:16 

本文实例讲述了C#通过html调用WinForm的方法。分享给大家供大家参考,具体如下:

完整测试代码:

Form1.cs:


using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace test
{
 [System.Runtime.InteropServices.ComVisibleAttribute(true)]
 public partial class Form1 : Form
 {
   public Form1()
   {
     InitializeComponent();
   }
   private void Form1_Load(object sender, EventArgs e)
   {
     System.IO.FileInfo file = new System.IO.FileInfo(Application.StartupPath+@"\test1.htm");
     webBrowser1.Url = new Uri(file.FullName);
     webBrowser1.ObjectForScripting = this;
   }
   private void button1_Click(object sender, EventArgs e)
   {
     object[] objects = new object[1];
     objects[0]="C#访问javascript脚本";
     webBrowser1.Document.InvokeScript("messageBox", objects);
   }
   public void MyMessageBox(string message)
   {
     MessageBox.Show(message);
   }
 }
}

类WinOper:


[System.Runtime.InteropServices.ComVisibleAttribute(true)]
 public class WinOperationClass
 {
   public void MyMessageBox1()
   {
     MessageBox.Show(message);
   }
   public void ShowForm()
   {
     Form2 f2 = new Form2();
     f2.WindowState = FormWindowState.Normal;
     f2.Show();
   }
 }

网页:


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
 <head>
   <title></title>
   <script language="javascript" type="text/javascript">
     function messageBox(message)
     {
       alert(message);
     }
   </script>
 </head>
 <body>
   <button onclick="window.external.MyMessageBox('javascript访问C#代码')">javascript访问C#代码</button>
     <a href="javascript:window.external.MyMessageBox1()">javascript访问C#代码</a>
   <a href="javascript:window.external.ShowForm()">javascript访问C#代码</a>
 </body>
</html>

补充:


webBrowser1.ObjectForScripting = this;

这句话的意思是webBrowser1的脚本执行的Com绑定的方法是 从Form1 来的,而MyMessageBox1和ShowForm却是在WinOperationClass类里面的,肯定是不行的。

第一个可以是因为form1里面有MyMessageBox这个方法,你吧MyMessageBox1和ShowForm移动到form1中或者把MyMessageBox移动到WinOperationClass里面,再把


webBrowser1.ObjectForScripting = this;

这句改成


WinOperationClass w=new WinOperationClass();
webBrowser1.ObjectForScripting = w;

就可以了

推荐第二种……把所有的 Com可见的方法放在一个类里面好维护

希望本文所述对大家C#程序设计有所帮助。

标签:C#,html,WinForm
0
投稿

猜你喜欢

  • spring boot如何使用AOP统一处理web请求

    2023-05-16 14:15:11
  • java 图片验证码的实现代码

    2023-11-09 13:33:52
  • C#中关于double.ToString()的用法

    2021-12-06 13:12:22
  • Java如何实现通过证书访问Https请求

    2021-10-19 08:51:36
  • 简单谈谈Java中的栈和堆

    2022-07-30 05:33:01
  • 快速排序算法在Java中的实现

    2022-05-25 01:06:15
  • Springboot 整合 RabbitMQ 消息队列 详情

    2021-07-17 18:49:42
  • Springboot整合Shiro的代码实例

    2021-09-03 04:16:52
  • Spring框架学习常用注解汇总

    2023-11-10 17:38:53
  • 学习C#静态函数及变量的一个精典例子与代码

    2021-10-08 18:53:52
  • Android 开发程序锁应用简单实例

    2021-10-07 07:41:34
  • IntelliJ IDEA使用教程从入门到上瘾(2019图文版)

    2023-03-30 17:00:49
  • Android仿直播类app赠送礼物功能

    2023-07-26 05:06:17
  • java 注解默认值操作

    2023-08-25 20:31:38
  • C#中常用的正则表达式实例

    2021-05-27 04:39:12
  • C# Dynamic关键字之:dynamic为什么比反射快的详解

    2021-06-24 04:22:35
  • android TextView设置中文字体加粗实现方法

    2023-08-06 02:32:03
  • 完美解决SpringCloud-OpenFeign使用okhttp替换不生效问题

    2023-07-03 11:27:25
  • SpringBoot集成Tomcat服务架构配置

    2022-06-30 09:10:11
  • 基于WPF实现控件轮廓跑马灯动画效果

    2022-05-03 20:10:08
  • asp之家 软件编程 m.aspxhome.com