-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DragDrop.DoDragDrop not working in wpf , when drag to windows explorer in windows10 #2007
Comments
Works for me. |
Can you confirm this is not a symptom of this problem? #1323 |
Does the ticket have an associated windows build number? I am on 18995.1.amd64fre.vb_release.190927-1420. |
This issue has been automatically marked as stale because it has marked as requiring author feedback but has not had any activity for 4 days. It will be closed if no further activity occurs within 3 days of this comment. Thank you for your contributions! |
Sorry, the bot is strangely closing issues incorrectly in some cases. This went out in September/October. If you're up to date with this KB then you should be good (assuming this is the same issue). Can you ensure that the different users don't also have difference OS versions? |
This issue has been automatically marked as stale because it has marked as requiring author feedback but has not had any activity for 4 days. It will be closed if no further activity occurs within 3 days of this comment. Thank you for your contributions! |
This issue has been moved from a ticket on Developer Community.
i am using below code to drag and drop the file or folder to windows explorer, it works perfectly for winforms but fails for wpf.
In WPF the code not work in windows 10
string path = @"C:\Rajesh\documents\bug\5.07 testing folder drag"; StringCollection collection = new StringCollection() { path }; string[] files = { path }; var data = new DataObject(DataFormats.FileDrop, files); data. SetData(DataFormats.Text, files[0]); // Clipboard.SetData(DataFormats.FileDrop, files); // Perform dragdrop DragDrop.DoDragDrop(this, data, DragDropEffects.Copy);
Original Comments
(no comments)
Original Solutions
(no solutions)
The text was updated successfully, but these errors were encountered: