A naive and lazy implementation of mem xfer for #1.

This commit is contained in:
soukoku
2014-04-11 19:25:48 -04:00
parent d3a50099a4
commit efe9b469ba
6 changed files with 74 additions and 63 deletions

View File

@@ -76,9 +76,9 @@ namespace Tester.Winform
if (img != null)
pictureBox1.Image = img;
}
else if (!string.IsNullOrEmpty(e.FilePath))
else if (!string.IsNullOrEmpty(e.FileDataPath))
{
var img = new Bitmap(e.FilePath);
var img = new Bitmap(e.FileDataPath);
pictureBox1.Image = img;
}
};