gpt4 book ai didi

c# - 如何在C#中复制列表框中的选定项?

转载 作者:行者123 更新时间:2023-11-30 20:03:21 25 4
gpt4 key购买 nike

如何使用右键单击“复制”菜单将列表框中的选定项目复制到剪贴板?

最佳答案

如果你想选择一个项目,然后按 ctrl + c 然后使用这个代码:

 private void listBox1_KeyDown(object sender, KeyEventArgs e)
{
if (e.Control == true && e.KeyCode == Keys.C)
{
string s = listBox1.SelectedItem.ToString();
Clipboard.SetData(DataFormats.StringFormat, s);
}
}

关于c# - 如何在C#中复制列表框中的选定项?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15244903/

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