こんにちは、openfiledialogを開いて新しい画像を選択して画像を変更したい..これはソースを変更することで..しかし、うまくいきません..助けていただけますか? Paginaholder は私のイメージです..
private void pdfOpenen()
{
Microsoft.Win32.OpenFileDialog d = new Microsoft.Win32.OpenFileDialog();
d.FileName = "Document";//begin map
Nullable<bool> pad = d.ShowDialog();
//Controleren of er een bestand geselecteerd werd
if (pad == true)
{
PaginaHolder.Source = BitmapFromUri(new Uri(pad, UriKind.Relative));
}
}
public static ImageSource BitmapFromUri(Uri source)
{
var bitmap = new BitmapImage();
bitmap.BeginInit();
bitmap.UriSource = source;
bitmap.CacheOption = BitmapCacheOption.OnLoad;
bitmap.EndInit();
return bitmap;
}