mercoledì 26 giugno 2013

[WPF] Caricare un'immagine a runtime

Ecco come caricare un'immagine a runtime:

public void LoadImage(string path)
{
    BitmapImage bmp = new BitmapImage();
    bmp.BeginInit();
    bmp.UriSource = new Uri(pathUriKind.RelativeOrAbsolute);
    bmp.EndInit();
 
    img.Source = bmp;
}

Nessun commento:

Posta un commento