有没有办法绑定数组子对象?

时间:2011-09-07 08:23:20

标签: c# arrays windows-phone-7 binding sorting

我目前在像node[1][1]这样的数组中有一些对象,每个父节点都有多个子对象/变量,例如...... node[1][2]node[1][3]等。

还有多个父对象,例如.. node[2][1]node[3][1]等。

我想要做的是绑定/显示所有父母的列表框中的所有子对象

例如.. listBox1.itemsource = node[All][1];

我做过一些研究,但找不到任何办法吗?

任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:0)

我找到了自己的解决方案。使用foreach然后使用if语句查找并显示specfic元素

示例代码 * ** * ** * ** * ** * ** * *

// statements_foreach_arrays.cs
// Using foreach with arrays
using System;
class MainClass 
{
   public static void Main() 
   {
      int odd = 0, even = 0;
      int[] arr = new int [] {0,1,2,5,7,8,11};

      foreach (int i in arr) 
      {
         if (i%2 == 0)  
            even++;      
         else 
            odd++;         
      }

      Console.WriteLine("Found {0} Odd Numbers, and {1} Even Numbers.",
                        odd, even) ;
   }
}

Using foreach with Arrays