摘要: http://stackoverflow.com/questions/tagged/windows-phone-7 阅读全文
posted @ 2012-12-25 18:03 hack25 阅读(110) 评论(0) 推荐(0) 编辑
摘要: http://dotnet.dzone.com/articles/how-you-can-add-customWe all know that Windows Phone 7 doesn't carry support ringtone modifications (not by default). This can be a bit frustrating for people who don't like any of the 30 pre-loaded tunes (although it's probably hard to find one). In this 阅读全文
posted @ 2012-12-25 17:56 hack25 阅读(238) 评论(2) 推荐(0) 编辑
摘要: http://wp7tiletoolkit.codeplex.com/ 阅读全文
posted @ 2012-12-24 21:51 hack25 阅读(161) 评论(0) 推荐(0) 编辑
摘要: stackPanel.Background = (Brush)Resources["PhoneAccentBrush"]; 阅读全文
posted @ 2012-12-24 13:01 hack25 阅读(185) 评论(0) 推荐(0) 编辑
摘要: http://www.code-magazine.com/articleprint.aspx?quickid=1109071&printmode=true 阅读全文
posted @ 2012-12-24 10:58 hack25 阅读(87) 评论(0) 推荐(0) 编辑
摘要: NavigationService.Navigate(new Uri(string.Format(NavigationService.Source + "?RefreshRandom={0}", Guid.NewGuid()), UriKind.RelativeOrAbsolute)); 阅读全文
posted @ 2012-12-21 20:42 hack25 阅读(123) 评论(0) 推荐(0) 编辑
摘要: http://www.189works.com/article-41287-1.html 阅读全文
posted @ 2012-11-18 13:48 hack25 阅读(138) 评论(1) 推荐(0) 编辑
摘要: http://www.189works.com/article-41275-1.html 阅读全文
posted @ 2012-11-18 13:47 hack25 阅读(121) 评论(0) 推荐(0) 编辑
摘要: Xaml:<StackPanel x:Name="stackPanel_PopupMessageBox" HorizontalAlignment="Left" Height="800" VerticalAlignment="Top" Width="480"> <StackPanel Height="216" Background="#FF494444"> <TextBlock TextWrapping="Wrap&q 阅读全文
posted @ 2012-11-13 15:39 hack25 阅读(293) 评论(0) 推荐(0) 编辑
摘要: 最近审查的时候遇到一个问题,研究很久才解决,原来是一个小问题就是MessageBox原来的代码是这样的,在没有输入IP的时候提示用户并跳转到配置页面。MessageBox.Show("使用前请先设置接收端IP");GoToConfig();//跳转到配置页面如果在WPF之类的写这样的代码没有什么大问题,但是WP7里面问题就出现了。在MessageBox的模态窗口打开的时候按一下“开始菜单”Win键会发生意想不到的情况就是MessageBox的模块窗口会被关闭,并且返回MessageBoxResult.None然后继续执行GoToConfig();但是现在界面以及切换到开始屏 阅读全文
posted @ 2012-11-12 22:00 hack25 阅读(145) 评论(0) 推荐(0) 编辑