( , Silverlight - "" . , WPF Silverlight, , Windows).
- Silverlight,
this.Drop += new DragEventHandler(MainPage_Drop);
void MainPage_Drop(object sender, DragEventArgs e)
{
IDataObject drop = e.Data;
if (drop.GetDataPresent(System.Windows.DataFormats.FileDrop))
{
FileInfo[] files = (FileInfo[])e.Data.GetData(System.Windows.DataFormats.FileDrop);
foreach (FileInfo file in files)
{
}
}
}
- , . TIFF, , - Stackoverflow, .