您当前位置:编程帮手 > 知识 > 知识 > WinForm > 常用代码 > 内容
代码库
2014-06-24 00:55:50 访问(2861) 赞(0) 踩(0)
/// /// 复制多个文件 /// /// public static void ClipbordCopyFileList(List theList) { System.Collections.Specialized.StringCollection stringCollectionValue = new System.Collections.Specialized.StringCollection(); foreach (string str in theList) { stringCollectionValue.Add(str); } Clipboard.SetFileDropList(stringCollectionValue); }
上一条:
下一条: