gpt4 book ai didi

c# - 检查剪贴板是否有数据,粘贴到文本框中

转载 作者:行者123 更新时间:2023-12-04 04:32:10 25 4
gpt4 key购买 nike

我试图将从剪贴板收集的数据粘贴到文本框 (C#)

在这种情况下,我将某些内容复制到剪贴板中

Clipboard.SetText("Hello, clipboard"); 

我怎么能在剪贴板有东西的那一刻(或者当用户执行 ctrl+c 时)执行复制事件到文本框?

我已尝试使用此代码;我的文本框是 tbData:
private void tbData_TextChanged(object sender, EventArgs e)
{
if (Clipboard.ContainsText(TextDataFormat.Text))
{
tbData.Text = Clipboard.GetText();
Clipboard.Clear();
}
}

但我得到这个异常(exception):

Requested Clipboard operation did not succeed

最佳答案

您必须为剪贴板更新事件连接一个事件处理程序。但这需要使用 P/Invoke 到 DllImport("user32.dll") 才能到达事件。看这篇文章 http://www.fluxbytes.com/csharp/how-to-monitor-for-clipboard-changes-using-addclipboardformatlistener/

那么你可以这样做......

//register clipboard change
YourAppName.ClipboardUpdate += new EventHandler(ClipboardChanged);
private void ClipboardChanged(object sender, EventArgs e)

{
IDataObject iData = Clipboard.GetDataObject();

//clipboard not empty and these are the formats I am only interested in
if (iData.GetDataPresent(DataFormats.UnicodeText) || iData.GetDataPresent(DataFormats.Text) || iData.GetDataPresent(DataFormats.Html))
{
//do work
}
}

关于c# - 检查剪贴板是否有数据,粘贴到文本框中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20416037/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com