XAML中如何把独立存储中的图片绑定到image
XAML中怎么把独立存储中的图片绑定到image?Image Width64 Height64 StretchNone Source{Bindi
XAML中怎么把独立存储中的图片绑定到image?
<Image Width="64" Height="64" Stretch="None" Source="{Binding ImagePath}"/>
ImagePath="/imgs/123.jpg";
我这样写不行,什么都没有
[解决办法]
使用:
xmlns:image="clr-namespace:System.Windows.Media.Imaging">
<Image image:ImageSource.Source="{Binding ImagePath}"/>
代码
https://code.csdn.net/snippets/65252