Guest User

Untitled

a guest
Jan 18th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. private void ImagePanel_Drop(object sender, DragEventArgs e)
  2. {
  3.  
  4. if (e.Data.GetDataPresent(DataFormats.FileDrop))
  5. {
  6. // можно же перетянуть много файлов, так что....
  7. string[] files = (string[])e.Data.GetData(DataFormats.FileDrop);
  8.  
  9. // делаешь что-то
  10. }
  11. }
  12.  
  13. <StackPanel Name="ImagePanel" Drop="ImagePanel_Drop" AllowDrop="true">
  14. ...
  15. </StackPanel>
  16.  
  17. Drop="ImagePanel_Drop" AllowDrop="true"
Add Comment
Please, Sign In to add comment