xamarin意外地退出了窗户

时间:2015-08-20 10:53:17

标签: c# xamarin.ios xamarin.forms

在我的更新Windows应用程序意外退出后,我使用xamarin表单1.4.4.6329应该是什么解决方案 实际问题发生在列表视图填充后我无法捕获实际错误但我的所有json数据都在视图模型中加载我认为问题发生在视图中如果有人知道如何解决请帮助我

1 个答案:

答案 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

获得了代码