无法显示列表中的数据

时间:2012-06-13 17:17:47

标签: c# windows-phone-7

由于某种原因它没有显示日期有什么不对吗?

IsolatedStorageSettings uc = IsolatedStorageSettings.ApplicationSettings;

public void load()
        {
            List<DateTime> List = new List<DateTime>();
            Schedule.ItemsSource = null;
            List<s> medicationList = (List<s>)uc["nList"];

            foreach(sn temp in List)
            {
                if (dateList.Contains(t.Date))
                {

                }
                else
                {                    
                    date.Add(t.Date);
                    Schedule.ItemsSource = List;
                }
            }
        }

愚蠢的错误(解决方案)

<ListBox x:Name="Schedule" >
</ListBox>

那些并删除不必要的代码

1 个答案:

答案 0 :(得分:1)

首先,将lstboxSchedule.ItemsSource = dateList;移到foreach之外。

设置断点以查看生成的列表是否为/为空。