gpt4 book ai didi

wpf - WPF 图像控件中的初始图像

转载 作者:行者123 更新时间:2023-12-01 13:00:01 25 4
gpt4 key购买 nike

我的项目中有一个从互联网加载的 WPF 图像控件(延迟加载),我想在图像控件中显示初始图像,直到主图像加载。请帮助我

<DataTemplate DataType="{x:Type local:MyData}">
...
<Image Width="50" Height="50" Source="{Binding Path=profile_image_url_https, FallbackValue=profile_image_url_https}" HorizontalAlignment="Left">
...
</DataTemplate>

最佳答案

您可以使用 TargetNullValue 使其工作在绑定(bind)上,仅在加载时设置图像属性。

例如

<BitmapImage x:Key="DefaultImage" UriSource="Images/Error.ico" />
<Image Source="{Binding TestBitmapImage,
TargetNullValue={StaticResource DefaultImage}}" />
private BitmapImage _TestBitmapImage = null;
public BitmapImage TestBitmapImage
{
get { return _TestBitmapImage; }
set
{
if (_TestBitmapImage != value)
{
_TestBitmapImage = value;
PropertyChanged.Notify(() => this.TestBitmapImage);
}
}
}
private void Button_Click(object sender, RoutedEventArgs e)
{
var img = new BitmapImage();
img.DownloadCompleted += (s, dcea) =>
{
TestBitmapImage = img;
};
img.BeginInit();
img.UriSource = new Uri("http://www.gravatar.com/avatar/c35af79e54306caedad37141f13de30c?s=128&d=identicon&r=PG");
img.EndInit();
}

关于wpf - WPF 图像控件中的初始图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6973629/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com