image.Source属性未设置

时间:2016-10-25 11:27:45

标签: c# wpf image uri

我在c#(WPF)中有以下代码:

            Image image = new System.Windows.Controls.Image();
        BitmapImage bitmapImage= new BitmapImage(new Uri("Images/WorkFlow/1.png", UriKind.Relative));
        image.Source = bitmapImage;

在上面的代码中,位图图像加载完美,但当它被设置为Imagecontrol的源时,源将保持为null并且不会获得该bitmapiamge。 我该怎么解决?

0 个答案:

没有答案