Created
October 8, 2015 19:14
-
-
Save SajjadArifGul/cb3c5a7d32ff09607593 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Get the files from Clipboard into Array of String. | |
string[] file_names = (string[])Clipboard.GetData(DataFormats.FileDrop); | |
// Paste data in the control. | |
lstFiles.DataSource = file_names; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment