0

我正在 Windows Phone 上开发一个应用程序,版本 7.1 设置为我的目标版本。我遇到的问题是我的页面中的一个列表视图拒绝显示。

我已经调试以确保列表被解析为其中的内容。当我使用 Windows 8 模拟器时,该应用程序也运行良好。但是,在应用程序的其他页面中填充其他列表视图时使用的相同技术在所有模拟器上都可以正常工作,该模拟器来自这个不显示的单个页面。

我什至尝试设置绑定堆栈面板的颜色以查看它是否会显示并且它会显示但没有任何内容。我真的很困惑,我的代码非常完美。我想知道是否有人在使用 Windows Phone 模拟器之前出现过这个问题?

private void countdownClient_DownloadStringCompleted(object sender, DownloadStringCompletedEventArgs e)
    {
        HtmlDocument doc = new HtmlDocument();            
        if (e.Error != null)
        {
            //MessageBox.Show(e.Error.InnerException.Message + "\n Ensure You Have A Working Internet Connection");                
            return;
        }
        doc.LoadHtml(e.Result);
        String noCountdown = "<div><span>Sorry no buses are expected within 30 minutes of this stop.  Please try again later or go to www.tfl.gov.uk</span></div>";

        if (e.Result.Contains(noCountdown))
        {
            //No Buses Expected;
            return;
        }
        else
        {
            HtmlNode stopCountdownNode;
            try
            {
                stopCountdownNode = doc.DocumentNode.SelectSingleNode("//*[contains(@id, 'stopBoard')]").SelectSingleNode("tbody");
            }
            catch (Exception)
            {
                MessageBox.Show("Error Responce From Server");
                return;
            }

            if (stopCountdownNode != null)
            {
                HtmlNodeCollection countdownNodeList = stopCountdownNode.SelectNodes("tr");
                CountDownListBox.ItemsSource = GetCountdownList(countdownNodeList);
            } 
        }
    }

    private ObservableCollection<BusCountdown> GetCountdownList(HtmlNodeCollection countdownNodeList)
    {
        ObservableCollection<BusCountdown> countdownList = new ObservableCollection<BusCountdown>();
        foreach (HtmlNode countDown in countdownNodeList)
        {
            String busName = HttpUtility.HtmlDecode(countDown.SelectSingleNode("*[contains(@class, 'resRoute')]").InnerHtml);
            String busDestination = HttpUtility.HtmlDecode(countDown.SelectSingleNode("*[contains(@class, 'resDir')]").InnerHtml);
            String countDownTime = HttpUtility.HtmlDecode(countDown.SelectSingleNode("*[contains(@class, 'resDue')]").InnerHtml);
            countdownList.Add(new BusCountdown(busName, busDestination, countDownTime));       
        }                                                    
        return countdownList;
    }

    public string GetRandomSlash()
    {
        Random r = new Random();
        String slash = "";
        int rand = r.Next(1, 20);
        for (int i = 0; i < rand; i++)
        {
            slash += "/";
        }
        return slash;
    }
4

2 回答 2

1

尝试设置用于绑定到公共的类访问说明符并尝试一下。让我知道它是否有效。

例如:

public class Bindingclass
{
public string Name{get;set;}
}
于 2013-03-30T10:22:46.717 回答
0
  1. 尝试使用Expression Blend并删除您以前的解决方案文件并构建一个新的解决方案
  2. 还要为所有页面正确设置构建操作属性。
  3. 将您的SDK 更新到 7.8版本。您将获得多种模拟器选择 - Emulator 7.1 (256 MB)、Emulator 7.1 (512 MB)、Emulator 7.8 (256 MB)、Emulator 7.8 (512 MB)。在所有这些版本上测试它并检查每种模拟器类型的输出。

我希望其中至少一项可以帮助您让事情顺利进行。让我们知道。

于 2013-03-30T11:18:55.917 回答