0
如何將圖像載入圖像?我試過將圖像載入XAML圖像
private void Button_Click_1(object sender, RoutedEventArgs e)
{
string path = "D:/baby.jpg";
BitmapImage bitmap = new BitmapImage(new Uri(path, UriKind.Relative));
imagebox.Source = bitmap;
}
但是當我點擊按鈕時,什麼都沒有發生。我做錯了什麼?