如何重置图像.宽度和图像.在代码隐藏中高度为自动
本文关键字:图像 高度 隐藏 何重置 代码 | 更新日期: 2023-09-27 17:52:59
在Xaml代码中,我将图像的宽度和高度设置为Auto。然后,在代码隐藏中,我有时必须将其设置为不同的值。但如何在代码隐藏中将其设置回Auto ?
在xaml代码中是这样的:<Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0">
<Image x:Name="FlickrImage"/>
和codebehind:
FlickrImage.Source = new BitmapImage(new Uri("/Images/error_image.png", UriKind.Relative));
FlickrImage.Width = 128;
FlickrImage.Height = 128;
之后,我想把它设回Auto。有人能帮我一下吗?
查看之前的SO问题
怎么说XAML
您将其设置为double。南