在我的更新Windows应用程序意外退出后,我使用xamarin表单1.4.4.6329应该是什么解决方案 实际问题发生在列表视图填充后我无法捕获实际错误但我的所有json数据都在视图模型中加载我认为问题发生在视图中如果有人知道如何解决请帮助我
答案 0 :(得分:0)
public class StringToImageConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
var filename = (string)value;
return ImageSource.FromFile(filename);
}
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
{
throw new NotImplementedException();
}}
并通过
调用它cell.SetBinding(ImageCell.ImageSourceProperty,
new Binding("IconSource", BindingMode.OneWay, new StringToImageConverter()));
我从https://forums.xamarin.com/discussion/comment/83094/#Comment_83094
获得了代码