如何在代码隐藏中将Image.Width和Image.Height重置为自动?

时间:2011-04-26 22:50:11

标签: c# xaml windows-phone-7

在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。有人可以帮我一把吗?

1 个答案:

答案 0 :(得分:5)

查看之前的SO问题

How to say XAML <Button Height="Auto"/> in code behind?

您将其设置为double.NAN