通过 C# 将选定的列表视图项传输到剪贴板
我正在尝试使用图像列表控件将目录中的图像填充到带有小缩略图预览的列表视图中。一旦用户从列表视图中选择了一个项目,我希望将所选项目复制到剪贴板。
我已经编写了填充列表视图的代码。这是一个C# winforms 应用程序。
我想尝试这样的事情:
private void listView1_SelectedIndexChanged(object sender, EventArgs e)
{
this.listView1.Items[0].Selected = true;
}
我只是在将数据复制到剪贴板时遇到问题。
我的问题:如何通过 C# 将选定的列表视图项目传输到剪贴板
任何帮助将不胜感激!
先感谢您!
I'm trying to populate images from a directory into a listview with a small thumbnail preview using an imagelist control. Once the user has selected an Item from the listview I want the selected item to be copied to the clipboard.
I already have the code written to populate the listview. It's a C# winforms application.
I'm thinking to try something like this:
private void listView1_SelectedIndexChanged(object sender, EventArgs e)
{
this.listView1.Items[0].Selected = true;
}
I'm just having issues getting the data copied to the clipboard.
My question: how can I transfer the the selected listview item to the clipboard via C#
Any help would be appreciated!
Thank you in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用(对于文本)
或
You can use (for text)
or
根据您的要求:
According to your requirement: