我尝试使用以下代码从剪贴板获取数据。
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 textFromMain = Clipboard.GetText(TextDataFormat.Text);
但是下面的行返回空字符串或空字符串。
var textFromThread = Clipboard.GetText(TextDataFormat.Text);
我没有得到问题所在。有人可以帮助我理解。如果它是多线程的,请指出我正确的方向。
答案 0 :(得分:3)
Clipboard.GetText(TextDataFormat.Text)使用COM并在线程中调用时抛出异常,该线程未标记为STAThreadAttribute。
要解决的一种方法是使用delegate通过Invoke将Clipboard.GetText的调用返回给主线程。但在这种情况下,线程将冻结它在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;
}
}
答案 1 :(得分:1)
我最后使用下面的方法来访问剪贴板文本。
private string GetClipBoradData()
{
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;
}
}
答案 2 :(得分:1)
以下代码对我有用。
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#