在Xaml代码中,我将Image的宽度和高度设置为Auto。然后,在代码隐藏中,我有时必须将其设置为不同的值。但是如何在代码隐藏中将其设置回Auto?
这是它在xaml代码中的样子:
<Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0">
<Image x:Name="FlickrImage"/>
在代码隐藏中:
FlickrImage.Source = new BitmapImage(new Uri("/Images/error_image.png", UriKind.Relative));
FlickrImage.Width = 128;
FlickrImage.Height = 128;
但在此之后,我想将其设置回Auto。有人可以帮我一把吗?
答案 0 :(得分:5)