1
IVE在綁定的列表的對象的Stringmember到的.xaml 在xaml.cs我這樣做有一個問題:視窗8的Xaml對象綁定
grdEvents.ItemsSource =等待m.GetEvents() ; //等待返回列表中的JSONcall
課後看起來是這樣的:
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的會員?
THX,羅馬
感謝您的回覆!我不能將圖像更改爲屬性,因爲它是修復的JSON返回,由服務器的API定義。其他解決方案? –
@RomanMauricéHlfn你需要將它包裝在一個將它作爲屬性的類中 - 綁定僅針對屬性而不是字段。 –
好的,非常感謝! :) –