WPF 图像控件中的初始图像
我的项目中有一个从互联网加载的 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>
I have a WPF Image Control in my project that loads from internet (lazy loading), i want to show a initial image in Image Control until main image load. plz help me
<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>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您也许可以使用
TargetNullValue
在绑定上,仅在加载时设置图像属性。例如
You might be able to make it work using
TargetNullValue
on the binding, only set the image property when it is loaded.e.g.