复制指定的列表文件
2014-12-31 21:11:22 访问(1534) 赞(0) 踩(0)
/// <summary>
/// 复制指定的列表文件
/// </summary>
/// <param name="theList"></param>
public void ClipbordCopyFileList(List<string> theList)
{
System.Collections.Specialized.StringCollection stringCollectionValue
= new System.Collections.Specialized.StringCollection();
foreach (string str in theList)
{
stringCollectionValue.Add(str);
}
Clipboard.SetFileDropList(stringCollectionValue);
}
标签:
复制指定的列表文件 


上一条:
下一条:
相关评论
发表评论