我在将列表对象的字符串成员绑定到 .xaml 时遇到问题在 xaml.cs 上我这样做:
grdEvents.ItemsSource = 等待 m.GetEvents(); //等待JSON调用后返回的列表
类看起来像这样:
public class getevents
{
public class Result{ //returned list
public string xy {get; set;} //access granted
public Image x {get; set;}
}
public class Image{
public string x ; //dont know how to acces?
}
}
如何访问 Imageobject 的成员?
谢谢,罗马