摘要: 让我们创建一个空wp7项目,要实现这个场景,首先我们将在mainpage.xaml中添加MediaElement来播放音频流。<MediaElement Name="mediaElement" BufferingTime="0:0:5" AutoPlay="True" Margin="419,1,1,611" />添加一个滚动条 一个开始一个暂停 一个剩余时间<Grid x:Name="ContentPanel" Grid.Row="1" Margin=&q 阅读全文
posted @ 2012-06-15 15:09 銱ル╬鎯噹 阅读(501) 评论(0) 推荐(0) 编辑
摘要: 该范例是时间以秒为单位自动刷新:点击BUTTUON 触发 定时器时间,每隔一秒执行一次 private void button1_Click(object sender, EventArgs e) { // 创建一个DispatcherTimer实例。 DispatcherTimer newTimer = new DispatcherTimer(); // 将DispatcherTimer的Interval设为1秒。 newTimer.Interval = TimeSpan.Fro... 阅读全文
posted @ 2012-06-15 14:53 銱ル╬鎯噹 阅读(384) 评论(0) 推荐(0) 编辑
摘要: Windows Phone可以被放到两个方向,横向和纵向。为了支持windows phone方向的改变,你需要改变你自己项目中的main .xaml文件。搜寻下面这一行 phone:PhoneApplicationPage并按照下面的方式改变它的值。 SupportedOrientations="PortraitOrLandscape . 在phone上创建OrientationChanged事件并写入下面所示的代码。view sourceprint?private void PhoneApplicationPage_OrientationChanged(object sender, 阅读全文
posted @ 2012-06-15 14:44 銱ル╬鎯噹 阅读(145) 评论(0) 推荐(0) 编辑
摘要: 为了阻止应用程序在256 MB手机上安装你需要在WmAppManifest XML文件里添加合适的<Requirement /> XML元素,如下所示:<Deployment AppPlatformVersion="7.1"> <App> <!-- ... --> <Requirements> <Requirement Name="ID_REQ_MEMORY_90" /> </Requirements> <!-- ... --> </App> &l 阅读全文
posted @ 2012-06-15 14:42 銱ル╬鎯噹 阅读(151) 评论(0) 推荐(0) 编辑
摘要: 让WINDOWS PHONE 震动代码如下: VibrateController是在命名空间Microsoft.Devices里;public void Vibrate(long durationSeconds) { VibrateController vibController = VibrateController.Default; TimeSpan ts = new TimeSpan(00, 00, durationSeconds); vibController.Start(ts); ... 阅读全文
posted @ 2012-06-15 14:37 銱ル╬鎯噹 阅读(169) 评论(0) 推荐(0) 编辑
摘要: 方法如下 :public MainPage(){ InitializeComponent(); Color themebackground = (Color)Application.Current.Resources["PhoneForegroundColor"]; if (themebackground.ToString() == "#FFFFFFFF") { this.PageTitle.Text = "Dark "; } else if (themebackground.ToString() == "#DE000000 阅读全文
posted @ 2012-06-15 14:21 銱ル╬鎯噹 阅读(212) 评论(0) 推荐(0) 编辑