单击Geckofx Web浏览器内的链接将触发Winforms中的方法

问题描述 投票:0回答:1

其中有一个名为“ test.html”的HTML文件,其中包含两个链接。此HTML文件在geckoWebBrowser1中显示如下:

<!DOCTYPE html>
<html>
<head lang="tr">
    <meta charset="UTF-8">
    <title>Test HTML</title>
</head>
<body>
<p><a href="#" id="open_file" class="open-file button" onclick="openFile()">Open A PDF file...</a></p>
<p><a href="#" id="go_to_articles" class="go-to-articles button" onclick="goToArticles()">Go to articles...</a></p>
</body>
<script>
    function openFile()
    {
        // What should I write here?
    }

    function goToArticles()
    {
        // What should I write here?
    }
</script>
</html>

这是winforms的内容:

using System;
using System.Windows.Forms;
using Gecko;

namespace Test
{
    public partial class Frm1 : Form
    {

        public Frm1()
        {
            InitializeComponent();

            Xpcom.Initialize("Firefox64");
        }
        private void Frm1_Load(object sender, EventArgs e)
        {
            FormBorderStyle = FormBorderStyle.None;

            geckoWebBrowser1.Navigate("start\\test.html");
        }

        public void OpenPDFFile()
        {
            var ofd = new OpenFileDialog { Filter = @"PDF |*.pdf", Title = @"Select a PDF file..." };
            if (ofd.ShowDialog() == DialogResult.OK)
            {
                // Here, action will be taken regarding the selected file.
            }
        }
    }
}

当我单击HTML文件中的Open A PDF file ...链接时,必须在Winforms中触发OpenPDFFile方法并从对话框中选择PDF文件,但是我无法这样做。但是,我想通过单击HTML文件中的Go to articles ...链接来查看Winforms中的“ FrmArticles”表单,但是到目前为止我还无法实现。

c# winforms webbrowser-control geckofx
1个回答
1
投票

它是从answerError in 'AddMessageEventListener' on GeckoFX问题的推导。

<!DOCTYPE html>
<html>
<head lang="tr">
    <meta charset="UTF-8">
    <title>Test HTML</title>
</head>
<body>
<p><a href="#" id="open_file" class="open-file button" onclick="fireEvent('openFiles', 'SomeData');">Open A PDF file...</a></p>
<p><a href="#" id="go_to_articles" class="go-to-articles button" onclick="goToArticles()">Go to articles...</a></p>
</body>
<script>
function fireEvent(name, data)
{
    var event = new MessageEvent(name,{'view': window, 'bubbles': false, 'cancelable': true, 'data': data});
    document.dispatchEvent(event);
}
</script>
</html>

Form.cs内容,

using System;
using System.Windows.Forms;
using Gecko;

namespace Test
{
    public partial class Frm1 : Form
    {

        public Frm1()
        {
            InitializeComponent();

            Xpcom.Initialize("Firefox64");
        }
        private void Frm1_Load(object sender, EventArgs e)
        {
            FormBorderStyle = FormBorderStyle.None;

            geckoWebBrowser1.Navigate("start\\test.html");
            AddMessageEventListener("openFiles", showMessage);
        }


        public void AddMessageEventListener(string eventName, Action<string> action)
        {
            geckoWebBrowser1.AddMessageEventListener(eventName, action);
        }

        private void showMessage(string s)
        {
            var ofd = new OpenFileDialog { Filter = @"PDF |*.pdf", Title = @"Select a PDF file..." };
            if (ofd.ShowDialog() == DialogResult.OK)
            {
                MessageBox.Show(ofd.FileName);
            }

        }
    }
}

在示例中,如果需要,可以使用字符串“ SomeData”作为参数。

© www.soinside.com 2019 - 2024. All rights reserved.