ObservableCollection <idictionary <string,string =“”>&gt;绑定到Listbox </idictionary <string,>

时间:2013-01-29 09:33:47

标签: c# windows-phone-8 observablecollection

    ObservableCollection<IDictionary<String, String>> ItemsSer = new ObservableCollection<IDictionary<String, String>>();

    foreach (XElement camposSer in document.Root.Elements("pm_venofer"))
    {
        Dictionary<String, String> Servicios = new Dictionary<String, String>();

            foreach (XElement columSer in document.Root.Element("columns").Elements("column"))
            {
                Servicios.Add(columSer.Value, camposSer.Element(columSer.Attribute("name").Value) != null ? camposSer.Element(columSer.Attribute("name").Value).Value : null);
            }
            ItemsSer.Add(Servicios);
        }
        listaServicios.ItemsSource = ItemsSer;

在ItemsSer中,我有20个词典的集合(每个词典有6个输入)。

我们想要的是在20个面板中显示,每个面板有6个每个对象的插件ItemSer

0 个答案:

没有答案