0

我在 C# WinForm 上有一个按钮。每当用户单击此按钮时,就意味着他已准备好复制一个他想知道其含义的单词。然后他只是复制这个词。最后他说明了这个词的意思。

为了做到这一点,我使用了一个计时器来查找剪贴板并通过使用网站上的 htmlAgility 包从剪贴板中获取单词。到目前为止,这是我的代码:

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;
using System.Net;
using System.IO;
using HtmlAgilityPack;

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

        private void button1_Click(object sender, EventArgs e)
        {
            timer1.Enabled = true;
            timer1.Tick += new EventHandler(timer1_Tick);
        }

        private void timer1_Tick(object sender, EventArgs e)
        {
            if (Clipboard.GetDataObject().GetDataPresent(DataFormats.Text))
            {
                string x = Clipboard.GetText();
                Clipboard.Clear();

                try
                {
                    HtmlWeb web = new HtmlWeb();
                    HtmlDocument doc = web.Load("http://www.bengalinux.org/cgi-bin/abhidhan/index.pl?en_word=" + x);
                    HtmlNodeCollection node = doc.DocumentNode.SelectNodes("//div[@class='dict_entry']//strong[2]");
                    foreach (HtmlNode n in node)
                    {
                        MessageBox.Show(n.InnerText);
                    }
                }
                catch (Exception ex)
                {
                    MessageBox.Show("no");
                }
            }
        }
    }
}  

但它不起作用。有一个例外:

在进行 OLE 调用之前,必须将当前线程设置为单线程单元 (STA) 模式。确保您的 Main 函数上标记了 STAThreadAttribute。

在线上

if (Clipboard.GetDataObject().GetDataPresent(DataFormats.Text)).

我该如何解决这个问题?

4

1 回答 1

2

在你的方法Program.cs中你有[STAThread]应用Main吗?

它应该看起来像这样:

[STAThread]
static void Main()
{
    Application.EnableVisualStyles();
    Application.SetCompatibleTextRenderingDefault(false);
    Application.Run(new MainForm());
}
于 2013-01-26T12:47:40.327 回答