I'm trying to load up an image and render it to screen as fast as I can.
Using a 3mb image, I can paint it to a pictureBox but it takes a second to render.
If I throw it over to an embedded xaml image control
, I can get the time down to about half a second.
I read that rendering the image to a panel, or form is faster than a picturebox, but I've been unable to verify this.
Does anyone know the FASTEST way to take an image and render it to screen in c# WinForms
?