我有一個具有4個套接字陣列的Device類。每個套接字都有id。Windows phone xaml數據綁定
class Device
{
public String name { get; set; }
public Socket[] sArray = new Socket[4];
}
class socket
{
public string id{ get; set; }
}
我想打印所有4 id到列表視圖的一個項目。每個項目有5個文本塊。我可以使用打印設備名稱,但如何從設備中的套接字陣列打印套接字ID?
<TextBlock Name="txtSocket1" Text="how to bind here socket id?"/>
<TextBlock Name="txtSocket2" Text="how to bind here socket id?"/>
<TextBlock Name="txtSocket3" Text="how to bind here socket id?"/>
<TextBlock Name="txtSocket4" Text="how to bind here socket id?"/>
<TextBlock FontSize="28" Text="{Binding Path=name}"/> //here easily I can get device name
Thanks dude!根據我的需要,你給了我完美的解決方案!做得好!再次感謝.... :) – Kevan
沒問題,很高興我可以幫忙。 – Abbas