如何本地化 Windows Phone 应用标题
摘要:如何本地化 Windows Phone 应用标题http://msdn.microsoft.com/zh-cn/library/windowsphone/develop/ff967550(v=vs.105).aspx
阅读全文
posted @
2013-08-09 15:32
微星
阅读(126)
推荐(0)
Windows Phone 官方示例学习:Short message dictation and web search grammars sample(语音识别,文字语音)
摘要:在windows phone8中语音可以理解为三部分功能即: 语音控制 voice commands, 语音识别 speech recognition,文字语音 text-to-speech (TTS)。示例演示如何使用预定义的短消息和网络搜索语法的基础知识与语音识别功能。代码下载:http://code.msdn.microsoft.com/wpapps/Short-message-dictation-594c8a0a相关文章:http://www.cnblogs.com/sonic1abc/archive/2012/11/18/2775153.html语音识别 speech recogni
阅读全文
posted @
2013-04-14 22:07
微星
阅读(420)
推荐(0)
Windows Phone 官方示例学习:Background Transfer Service Sample(后台传输)
摘要:此示例显示了如何使用后台传输服务在后台下载文件,即使当应用程序不再运行在前台。通过BackgroundTransferRequest 实现上传下载// Create the new transfer request, passing in the URI of the file to // be transferred.BackgroundTransferRequest transferRequest = new BackgroundTransferRequest(transferUri);// Set the transfer method. GET and POST are support
阅读全文
posted @
2013-04-11 10:49
微星
阅读(271)
推荐(0)
windows phone 8 锁屏界面 显示应用程序的消息提醒
摘要:自己的应用程序如果有推送消息,希望能在锁屏界面获得提示,像未接电话和未读短信一样。创建一个24*24的PNG图片,用于锁屏界面显示。放入程序根目录下。打开文件WMAppManifest.xml. 更新DeviceLockImageURI节点.输入图片名称.添加<Extensions> <Extension ExtensionName="LockScreen_Notification_IconCount" ConsumerID="{111DFF24-AA15-4A96-8006-2BFF8122084F}" TaskID="_d
阅读全文
posted @
2012-08-22 14:24
微星
阅读(1242)
推荐(0)
windows phone 8 更换锁屏界面图片
摘要:1,打开WMAppManifest.xml.添加<Extensions> <Extension ExtensionName="LockScreen_Wallpaper" ConsumerID="{111DFF24-AA15-4A96-8006-2BFF8122084F}" TaskID="_default" /></Extensions>2,添加事件privateasyncvoidbuttonSet_Click(objectsender,RoutedEventArgse){UrinextImageU
阅读全文
posted @
2012-08-21 15:46
微星
阅读(1162)
推荐(0)