摘要: 隐私条款我们注重对您个人隐私的保护。本隐私权声明并解释了某些情况下的数据收集和使用情况。我们不会收集或发布的任何个人信息。 但是为了帮助提供我们的服务,第三方广告和社交平台可能会在软件中采集您的相关个人信息,他们保护这些信息的安全。 我们承诺将严格保护您的个人信息的安全。如果您对我们的隐私保护有任何质疑,请发送邮件至zl1911@live.cn。也可连系我的微博http://weibo.com/u/1798350307.Privacy PolicyWe focus on the protection of your privacy. This privacy statement explain 阅读全文
posted @ 2013-11-27 23:01 小_火 阅读(1124) 评论(0) 推荐(0) 编辑
摘要: down voteYou have 2 ways to go:(1) Create any UIElement to pass into PushPinLayer.AddChild. The AddChild method will accept and any UIElement, such as an image in this case:MapLayer m_PushpinLayer =newMapLayer();Your_Map.Children.Add(m_PushpinLayer);Image image =newImage();image.Source=ResourceFile. 阅读全文
posted @ 2013-07-22 13:20 小_火 阅读(249) 评论(0) 推荐(0) 编辑
摘要: 1 class City 2 { 3 public string CityName { get; set; } 4 5 public int Start { get; set; } 6 7 public int End { get; set; } 8 9 public bool IsCurrentCity(int num)10 {11 return (num >= Start && num <= End);12 }13 }14 15 class CityHelper16 {17 List<City> cityList... 阅读全文
posted @ 2013-01-23 09:30 小_火 阅读(208) 评论(0) 推荐(0) 编辑
摘要: Symptoms Consider the following scenario. Youinstall the .NET Framework 4.0. Then, youinstall an earlier version of the .NET Framework, or you enable.NET 3.0 WCF HTTP Activation. In this scenario, you may receive the followingerror message when you when runapplications that are hosted on Internet I. 阅读全文
posted @ 2013-01-21 16:31 小_火 阅读(149) 评论(0) 推荐(0) 编辑
摘要: LongListSelector如何实现类似于WP7手机程序列表的效果,将屏幕显示范围内的第一个分组的GroupHeader一直显示在列表的最上方。 国内国外论坛上问的不少,可都没有实现。无耐之下自己动手搞定,闲话少续,开讲..... 核心思想:取得当前LongListSelector控件可视范围内的第一条数据,取得它的分组名称,然后自己制做一个组头(在我的示例它叫做borderGroupName),覆盖在LongListSelector控件之上。 <Border BorderThickness="0" BorderBrush="White" Vi 阅读全文
posted @ 2012-06-01 09:24 小_火 阅读(206) 评论(0) 推荐(0) 编辑