0

如何将图像加载到图像中?我试过了

        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;
    }

但是当我点击按钮时,什么也没发生。我做错了什么?

4

1 回答 1

1

Windows 应用商店应用不支持绝对路径。您需要使用其中一种有效的方案,但这不适用于根目录中的文件。在这种情况下,您将需要使用文件选择器之类的东西访问 StorageFile 并在从文件打开的流上调用 imagebox.SetSource()。

于 2013-01-18T23:53:52.687 回答