欢迎访问移动开发之家(rcyd.net),关注移动开发教程。移动开发之家  移动开发问答|  每日更新
页面位置: > >

WindowsPhone开发教程

最近更新文章

Windows Phone 实用开发技巧(16):Windows Phone 中编辑图片(投递于:19-03-28)

Windows Phone 实用开发技巧(16):Windows Phone 中编辑图片 一说到编辑图片,大家可能会想到将图片拆分成一个个像素,然后去操作这些像素,从而达到编辑图片的目的。今天介绍一个比较

Windows Phone 实用开发技巧(17):自定义应用程序的Tile(投递于:19-03-28)

Windows Phone 实用开发技巧(17):自定义应用程序的Tile 在Windows Phone 7 (Nodo)之前的版本中,我们在应用程序列表中长按某个应用程序的时候,会弹出Pin To Start的选择,选中后系统会将该

windows phone开发之Image控件(投递于:19-03-28)

windows phone开发之Image控件 后台数据绑定 //本地 this.image1.Source = new BitmapImage( new Uri(Desert.jpg, UriKind.Relative) ); //网络 this.image1.Source = new BitmapImage( new Uri(http://www.2cto.com/uploadfile/2012/0110/2012

windows phone开发之客户端本地简单填充加密解密(投递于:19-03-28)

windows phone开发之客户端本地简单填充加密解密 using System; using System.Net; using System.Windows; using System.Windows.Controls; using System.Windows.Documents; using System.Windows.Ink; using System.Windows.Input; using Sy

windows phone开发之获取摄像头(投递于:19-03-28)

windows phone开发之获取摄像头 引入命名空间: Using Microsoft.Phone.Tasks; 代码段: void cameraCaptureTask_Completed(object sender, PhotoResult e) { BitmapImage bmp = new BitmapImage(); bmp.SetSource(e.ChosenPhoto);//获取返

Windows Phone 7 开发之检查手机网络(投递于:19-03-28)

Windows Phone 7 开发之检查手机网络 using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Windows; using System.Windows.Controls; using System.Windows.Documents; using System.Windows.Input;

Windows Phone 实用开发技巧(18):使用SystemTray显示全局消息提醒(投递于:19-03-28)

Windows Phone 实用开发技巧(18):使用SystemTray显示全局消息提醒 在Windows Phone 7 (Nodo)之前的版本中,我们要在应用程序显示消息提醒,或者是进度提示,通常的做法在页面的顶部放置一

Windows Phone 实用开发技巧(19):使用ProgressIndicator做进度显示(投递于:19-03-28)

Windows Phone 实用开发技巧(19):使用ProgressIndicator做进度显示 在上篇开发技巧《Windows Phone 实用开发技巧(18):使用SystemTray显示全局消息提醒》中介绍了Mango中新增的APIProgressIndicator的

Windows Phone 实用开发技巧(20):ApplicationBar 的Text国际化(投递于:19-03-28)

Windows Phone 实用开发技巧(20):ApplicationBar 的Text国际化 我们知道Windows Phone 中ApplicationBar的Text属性不是依赖属性,不能采取绑定的方法实现文本的国际化,那么我们在实际开发中是怎么

Windows Phone 实用开发技巧(21):自动循环播放视频(投递于:19-03-28)

Windows Phone 实用开发技巧(21):自动循环播放视频 In Windows Phone Mango update, we can use VideoBrush since we could not do that in windows phone 7 . So there is something interesting to do. We can develop morefantasitic a

Windows Phone 实用开发技巧(22):使用日志记录当前信息与异常信息(投递于:19-03-28)

Windows Phone 实用开发技巧(22):使用日志记录当前信息与异常信息 What is logging ? Loggingis the felling, skidding, on-site processing, and loading of trees or logs onto trucks. And since windows phone is much more ev

Windows Phone 实用开发技巧(23):强制关闭SIP(投递于:19-03-28)

Windows Phone 实用开发技巧(23):强制关闭SIP 在之前的《Windows Phone 实用开发技巧(14):输入框隐藏SIP事件》中,我讲了如何在Windows Phone 中检测点击物理回退键的时候,SIP会自动隐藏的

Windows Phone 实用开发技巧(24):上传日志(投递于:19-03-28)

Windows Phone 实用开发技巧(24):上传日志 In my last post《Windows Phone 实用开发技巧(22):使用日志记录当前信息与异常信息》, I talked about how to log in our application. Here comes the problem: how

Windows Phone 实用开发技巧(25):Windows Phone读取本地数据(投递于:19-03-28)

Windows Phone 实用开发技巧(25):Windows Phone读取本地数据 Windows Phone read local data During windows phone development, sometimes we might be want to read some initial data from local resources. Data can be stored in XML,

Windows Phone 实用开发技巧(26):对DataTemplate中的元素播放动画(投递于:19-03-28)

Windows Phone 实用开发技巧(26):对DataTemplate中的元素播放动画 有些时候我们需要对ListBox中的某项做出一种点击动画,即点击ListBox的某项时,被点的Item播放一个相应的动画。通常,我们

Windows Phone 实用开发技巧(27):创建透明Tile(投递于:19-03-28)

Windows Phone 实用开发技巧(27):创建透明Tile I have talked about how to create custom Live Tile in 《Windows Phone 实用开发技巧(17):自定义应用程序的Tile》. Today lets dig a little bit deeper. What do you

Windows Phone 实用开发技巧(28):图片缓存(投递于:19-03-28)

Windows Phone 实用开发技巧(28):图片缓存 在之前的文章中,我讲到了一些关于Windows Phone中处理图片的知识,Windows Phone 中编辑图片 、Windows Phone 中处理图片的技巧 、在Windows Phone显示

Windows Phone 实用开发技巧(29):动态绑定Pivot(投递于:19-03-28)

Windows Phone 实用开发技巧(29):动态绑定Pivot 前几天有个网友问我如何动态绑定Pivot项,即PiovtItem的项是动态的,PivotItem中的数据也是动态的。这个使用MVVM模式可以很方便的实现,在

Windows Phone 实用开发技巧(30):Pivot切换时同时渐变背景图片(投递于:19-03-28)

Windows Phone 实用开发技巧(30):Pivot切换时同时渐变背景图片 上篇文章讲了如果动态绑定Pivot,其实绑定正确了就可以了,没有什么技术难点。今天介绍如果在切换PivotItem时同时渐变的

Windows Phone实用开发技巧(31):密码加密(投递于:19-03-28)

Windows Phone实用开发技巧(31):密码加密 我们在实际开发的时候可能需要记住用户的信息,比如用户名与密码,通常的作用是在之后的网络请求中需要认证。密码是敏感信息,我们需要

Windows Phone实用开发技巧(32):照片角度处理(投递于:19-03-28)

Windows Phone实用开发技巧(32):照片角度处理 在实际项目中,可能需要用户从相册中选择图片然后进行相应的处理。但是不知道大家有没有发现这样一种情况,就是手机里看是竖着的,

Windows Phone实用开发技巧(33):不重启程序切换当前语言(投递于:19-03-28)

Windows Phone实用开发技巧(33):不重启程序切换当前语言 在之前的《Windows Phone 应用程序的全球化》 中讲到了如果创建一个多语言支持的Windows Phone应用程序,本篇文章让我们dig a littl

Windows Phone 7 Tips (2)(投递于:19-03-28)

Windows Phone 7 Tips (2) 1. 在Windows Phone 7中最简单的操作IsolatedStorge的代码 : SaveNote()将文本框内容保存到Note.txt中,Edit()读取Note.txt到文本框中 2. Windows Phone 7中的Orientation 分为 Portrait(竖屏)

Windows Phone 7 Tips (6)(投递于:19-03-28)

Windows Phone 7 Tips (6) 1. Windows Phone 7 页面的启动顺 序: 当应用程序被加载时,一个PhoneApplicationFrame会被创建。然后这个Frame会告知导航到MainPage。当页面加载和导航的时候,启动画面会被显

在Windows Phone 7 中显示HTML代码(投递于:19-03-28)

在Windows Phone 7 中显示HTML代码 在早期推广宣传推出Windows Phone 7的时候,我们做了大量的工作去帮助客户建立早期的应用程序,移植他们的已经成熟的应用到WP7市场上来。我们提供指导和

  1. 首页
  2. 上一页
  3. 6
  4. 7
  5. 8
  6. 9
  7. 10
  8. 11
  9. 12
  10. 13
  11. 14
  12. 15
  13. 16
  14. 下一页
  15. 末页