2

これは、文字列リソースに格納されている HTML です。

<!DOCTYPE html>
<html>
    <head></head>
    <body>
        <script>
           (function(){
               window.external.hello()
           })()
        </script>
    </body> 
</html>

これは Form1.cs の内容です。

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace JSIE
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();

        }

        private void Form1_Load(object sender, EventArgs e)
        {
            webBrowser1.Navigate("about:blank");
            webBrowser1.Document.Write(String.Empty);
            webBrowser1.Document.Write(Properties.Resources.DDocument);
            webBrowser1.ObjectForScripting = new JSCallbacks();
        }
    }
}

これは JSCallbacks.cs です。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Security.Permissions;
using System.Runtime.InteropServices;
using System.Windows.Forms;

namespace JSIE
{
    [PermissionSet(SecurityAction.Demand, Name = "FullTrust")]
    [ComVisible(true)]

    public class JSCallbacks
    {
        public void hello() {
            MessageBox.Show("Hello, world!");
        }
    }
}

これを実行するhello()と、JavaScriptwindow.externalオブジェクトのメソッドにアクセスできず、スクリプト エラー メッセージ ボックスが表示されます。thisとして使用してみましたObjectForScriptingが、どちらも機能しません。

4

1 に答える 1

2

了解しました。ページが実行される前に、DocumentText プロパティを使用して HTML をロードする必要があります。

于 2012-10-30T23:57:20.513 に答える