winforms 如何在非主线程中获取剪贴板数据?

t98cgbkg  于 2023-01-05  发布在  其他
关注(0)|答案(3)|浏览(212)

我正尝试用下面的代码从剪贴板获取数据。

private void TestBtn_Click(object sender, EventArgs e)
{
 Thread sampleThread = new Thread(SampleMethod);
 sampleThread.IsBackground = true;
 sampleThread.Start();
 Thread.Sleep(2000);
 var textFromMain = Clipboard.GetText(TextDataFormat.Text);
}

private void SampleMethod()
{
 var textFromThread = Clipboard.GetText(TextDataFormat.Text);
 Thread.Sleep(1000);
}

我把这行复制到剪贴板的所有文本-
第一个月
但下面一行返回空字符串或空字符串。
var textFromThread = Clipboard.GetText(TextDataFormat.Text);
我不明白是什么问题。有人能帮我弄明白吗?如果是多线程,请给我指出正确的方向。

guykilcj

guykilcj1#

Clipboard.GetText(TextDataFormat.Text)使用COM,如果在未标记STAThreadAttribute的线程中调用,则引发异常
一种解决方法是使用delegate将Clipboard.GetText的调用返回给Invoke的主线程。但是在这种情况下,线程将冻结它在Invoke上的执行,直到SampleMethod()结束它在主窗体线程上的执行,主线程将被释放。
另一种方法是使用自己对COM的调用来获取剪贴板文本,而不是System.Windows.Forms.Clipboard.GetText(),请参见ClipboardCom.GetText(),此方法不需要等待主窗体线程。

private string _textFromMain, _textFromThreadByInvoke, _textFromThreadByCom;

    private delegate string GetClipboardInvoke(TextDataFormat textformat);
    private void SampleInvokeMethod()
    {
        GetClipboardInvoke invokerClipboard = new GetClipboardInvoke(Clipboard.GetText);
        _textFromThreadByInvoke = (string)this.Invoke(invokerClipboard, TextDataFormat.Text); // where this is a Form
        Thread.Sleep(1000);
    }


    private void button1_Click(object sender, EventArgs e)
    {
        Thread sampleInvokeThread = new Thread(SampleInvokeMethod) { IsBackground = true };
        sampleInvokeThread.Start();

        Thread sampleComThread = new Thread(SampleComMethod) { IsBackground = true };
        sampleComThread.Start();

        Thread.Sleep(10000);
        _textFromMain = Clipboard.GetText(TextDataFormat.Text);
    }

    private void SampleComMethod()
    {
        _textFromThreadByCom = ClipboardCom.GetText();
        Thread.Sleep(1000);
    }

    public static class ClipboardCom
    {
        [DllImport("user32.dll")]
        static extern IntPtr GetClipboardData(uint uFormat);
        [DllImport("user32.dll")]
        static extern bool IsClipboardFormatAvailable(uint format);
        [DllImport("user32.dll", SetLastError = true)]
        static extern bool OpenClipboard(IntPtr hWndNewOwner);
        [DllImport("user32.dll", SetLastError = true)]
        static extern bool CloseClipboard();
        [DllImport("kernel32.dll")]
        static extern IntPtr GlobalLock(IntPtr hMem);
        [DllImport("kernel32.dll")]
        static extern bool GlobalUnlock(IntPtr hMem);

        const uint CF_UNICODETEXT = 13;

        public static string GetText()
        {
            if (!IsClipboardFormatAvailable(CF_UNICODETEXT))
                return null;
            if (!OpenClipboard(IntPtr.Zero))
                return null;

            string data = null;
            var hGlobal = GetClipboardData(CF_UNICODETEXT);
            if (hGlobal != IntPtr.Zero)
            {
                var lpwcstr = GlobalLock(hGlobal);
                if (lpwcstr != IntPtr.Zero)
                {
                    data = Marshal.PtrToStringUni(lpwcstr);
                    GlobalUnlock(lpwcstr);
                }
            }
            CloseClipboard();

            return data;
        }
    }
j8ag8udp

j8ag8udp2#

我最后使用下面的方法来访问剪贴板文本。

private string GetClipboardData()
    {
        try
        {
            string clipboardData= null;
            Exception threadEx = null;
            Thread staThread = new Thread(
                delegate ()
                {
                    try
                    {
                        clipboardData= Clipboard.GetText(TextDataFormat.Text);
                    }

                    catch (Exception ex)
                    {
                        threadEx = ex;
                    }
                });
            staThread.SetApartmentState(ApartmentState.STA);
            staThread.Start();
            staThread.Join();
            return clipboardData;
        }
        catch (Exception exception)
        {
            return string.Empty;
        }
    }
t9eec4r0

t9eec4r03#

下面的代码对我有效。

Thread theThread = new Thread((ThreadStart)delegate
        {
            var selectedPodcastPlaylist = (PodcastPlaylist)metroGridPodcastPlaylist.SelectedRows[0].DataBoundItem;
            Clipboard.SetText(selectedPodcastPlaylist.URI);
        });

        try
        {
            //set STA as the Open file dialog needs it to work
            theThread.TrySetApartmentState(ApartmentState.STA);

            //start the thread
            theThread.Start();

            // Wait for thread to get started
            while (!theThread.IsAlive) { Thread.Sleep(1); }

            // Wait a tick more (@see: http://scn.sap.com/thread/45710)
            Thread.Sleep(1);

            //wait for the dialog thread to finish
            theThread.Join();
        }
        catch (Exception)
        {
        }

灵感来自本文和来源Thread Apartment Safe Open/Save File Dialogs for C#

相关问题