程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> C#經由過程html挪用WinForm的辦法

C#經由過程html挪用WinForm的辦法

編輯:C#入門知識

C#經由過程html挪用WinForm的辦法。本站提示廣大學習愛好者:(C#經由過程html挪用WinForm的辦法)文章只能為提供參考,不一定能成為您想要的結果。以下是C#經由過程html挪用WinForm的辦法正文


本文實例講述了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#法式設計有所贊助。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved